diff --git a/libretroshare/src/gxstrans/p3gxstrans.cc b/libretroshare/src/gxstrans/p3gxstrans.cc index 34487017c..c9f471ddb 100644 --- a/libretroshare/src/gxstrans/p3gxstrans.cc +++ b/libretroshare/src/gxstrans/p3gxstrans.cc @@ -753,8 +753,9 @@ bool p3GxsTrans::handleEncryptedMail(const RsGxsTransMailItem* mail) // Hint match none of our own ids if(decryptIds.empty()) { - std::cout << "p3GxsTrans::handleEcryptedMail(...) hint doesn't match" - << std::endl; +#ifdef DEBUG_GXSTRANS + std::cout << "p3GxsTrans::handleEcryptedMail(...) hint doesn't match" << std::endl; +#endif return true; } diff --git a/libretroshare/src/turtle/p3turtle.cc b/libretroshare/src/turtle/p3turtle.cc index 3e5cbb3db..3abc216dc 100644 --- a/libretroshare/src/turtle/p3turtle.cc +++ b/libretroshare/src/turtle/p3turtle.cc @@ -1387,7 +1387,9 @@ bool p3turtle::getTunnelServiceInfo(TurtleTunnelId tunnel_id,RsPeerId& vpid,RsFi if(it == _incoming_file_hashes.end()) { +#ifdef P3TURTLE_DEBUG std::cerr << "p3turtle::handleRecvGenericTunnelItem(): hash " << hash << " for client side tunnel endpoint " << std::hex << tunnel_id << std::dec << " has been removed (probably a late response)! Dropping the item. " << std::endl; +#endif return false; } @@ -1399,7 +1401,9 @@ bool p3turtle::getTunnelServiceInfo(TurtleTunnelId tunnel_id,RsPeerId& vpid,RsFi if(it == _outgoing_tunnel_client_services.end()) { +#ifdef P3TURTLE_DEBUG std::cerr << "p3turtle::handleRecvGenericTunnelItem(): hash " << tunnel.hash << " for server side tunnel endpoint " << std::hex << tunnel_id << std::dec << " has been removed (probably a late response)! Dropping the item. " << std::endl; +#endif return false; } @@ -1899,8 +1903,10 @@ void p3turtle::handleTunnelResult(RsTurtleTunnelOkItem *item) new_vpid = _local_tunnels[item->tunnel_id].vpid ; // save it for off-mutex usage. } } +#ifdef P3TURTLE_DEBUG if(!found) std::cerr << "p3turtle: error. Could not find hash that emmitted tunnel request " << reinterpret_cast(item->tunnel_id) << std::endl ; +#endif } else { // Nope, forward it back. diff --git a/retroshare-gui/src/TorControl/TorManager.cpp b/retroshare-gui/src/TorControl/TorManager.cpp index b538964e9..2bda04647 100644 --- a/retroshare-gui/src/TorControl/TorManager.cpp +++ b/retroshare-gui/src/TorControl/TorManager.cpp @@ -472,6 +472,15 @@ QString TorManagerPrivate::torExecutablePath() const return path + filename; #endif +#ifdef __APPLE__ + // on MacOS, try traditional brew installation path + + path = QStringLiteral("/usr/local/opt/tor/bin") ; + + if (QFile::exists(path + filename)) + return path + filename; +#endif + // Try $PATH return filename.mid(1); } diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp index 558715faa..f388564c1 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp +++ b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp @@ -56,7 +56,7 @@ #include #include -#define DEBUG_FORUMS +//#define DEBUG_FORUMS /* Images for context menu icons */ #define IMAGE_MESSAGE ":/images/mail_new.png" @@ -1008,14 +1008,6 @@ void GxsForumThreadWidget::clickedThread(QModelIndex index) std::cerr << "Clicked on message ID " << mThreadId << ", index=" << index << std::endl; #endif -// if(mUpdating) -// { -//#ifdef DEBUG_FORUMS -// std::cerr << " early return because mUpdating=true" << std::endl; -//#endif -// return; -// } - if(!index.isValid()) { #ifdef DEBUG_FORUMS @@ -1500,7 +1492,7 @@ bool GxsForumThreadWidget::navigate(const RsGxsMessageId &msgId) if(!source_index.isValid()) { - std::cerr << "Cannot navigate to msg " << msgId << " in forum " << mForumGroup.mMeta.mGroupId << ": index unknown. Setting mNavigatePendingMsgId." << std::endl; + std::cerr << "(EE) Cannot navigate to msg " << msgId << " in forum " << mForumGroup.mMeta.mGroupId << ": index unknown. Setting mNavigatePendingMsgId." << std::endl; mNavigatePendingMsgId = msgId; // not found. That means the forum may not be loaded yet. So we keep that post in mind, for after loading. return true; // we have to return true here, otherwise the caller will intepret the async loading as an error. @@ -1694,7 +1686,7 @@ void GxsForumThreadWidget::replyMessageData(const RsGxsForumMsg &msg) { if ((msg.mMeta.mGroupId != groupId()) || (msg.mMeta.mMsgId != mThreadId)) { - std::cerr << "GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!"; + std::cerr << "(EE) GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!"; std::cerr << std::endl; return; } @@ -1722,7 +1714,7 @@ void GxsForumThreadWidget::editForumMessageData(const RsGxsForumMsg& msg) { if ((msg.mMeta.mGroupId != groupId()) || (msg.mMeta.mMsgId != mThreadId)) { - std::cerr << "GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!"; + std::cerr << "(EE) GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!"; std::cerr << std::endl; return; } @@ -1766,7 +1758,7 @@ void GxsForumThreadWidget::replyForumMessageData(const RsGxsForumMsg &msg) { if ((msg.mMeta.mGroupId != groupId()) || (msg.mMeta.mMsgId != mThreadId)) { - std::cerr << "GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!"; + std::cerr << "(EE) GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!"; std::cerr << std::endl; return; } @@ -1857,7 +1849,9 @@ void GxsForumThreadWidget::postForumLoading() #endif if(!mNavigatePendingMsgId.isNull() && mThreadModel->getIndexOfMessage(mNavigatePendingMsgId).isValid()) { +#ifdef DEBUG_FORUMS std::cerr << "Pending msg navigation: " << mNavigatePendingMsgId << ". Using it as new thread Id" << std::endl; +#endif QModelIndex source_index = mThreadModel->getIndexOfMessage(mNavigatePendingMsgId); QModelIndex index = mThreadProxyModel->mapFromSource(source_index); @@ -1963,7 +1957,9 @@ void GxsForumThreadWidget::updateMessageData(const RsGxsMessageId& msgId) { // 1 - get message data from p3GxsForums +#ifdef DEBUG_FORUMS std::cerr << "Retrieving post data for post " << msgId << std::endl; +#endif std::set msgs_to_request ; std::vector msgs; @@ -2014,7 +2010,7 @@ void GxsForumThreadWidget::showAuthorInPeople(const RsGxsForumMsg& msg) { if(msg.mMeta.mAuthorId.isNull()) { - std::cerr << "GxsForumThreadWidget::loadMsgData_showAuthorInPeople() ERROR Missing Message Data..."; + std::cerr << "(EE) GxsForumThreadWidget::loadMsgData_showAuthorInPeople() ERROR Missing Message Data..."; std::cerr << std::endl; } diff --git a/retroshare-gui/src/lang/retroshare_af.ts b/retroshare-gui/src/lang/retroshare_af.ts index 8821ffd51..b2d842ff8 100644 --- a/retroshare-gui/src/lang/retroshare_af.ts +++ b/retroshare-gui/src/lang/retroshare_af.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -20,7 +18,7 @@ About RetroShare - + @@ -28,7 +26,7 @@ About - + @@ -36,52 +34,52 @@ Form - + About - + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - + Have fun ;-) - + Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + @@ -97,28 +95,28 @@ File type(extension): - + Use default command - + Command - + RetroShare - + - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - + @@ -126,42 +124,42 @@ RetroShare: Advanced Search - + Search Criteria - + Add a further search criterion. - + Reset the search criteria. - + Cancels the search. - + Cancel - + Perform the advanced search. - + Search - + @@ -170,206 +168,206 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + Description: - + Share Options - + Policy: - + Quality: - + Comments: - + Identity: - + Public - + Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -378,101 +376,101 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + Description: - + Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -480,32 +478,32 @@ p, li { white-space: pre-wrap; } Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -513,187 +511,187 @@ p, li { white-space: pre-wrap; } Language - + Choose the language used in RetroShare - + (Needs restart) - + Style - + Choose RetroShare's interface style - + Style Sheet - + Appearance - + Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -702,43 +700,43 @@ p, li { white-space: pre-wrap; } 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -746,17 +744,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + [ERROR]) - + @@ -764,32 +762,32 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + Remove - + Set your Avatar picture - + Load Avatar - + @@ -797,7 +795,7 @@ p, li { white-space: pre-wrap; } Click to change your avatar - + @@ -805,7 +803,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -813,7 +811,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -821,73 +819,73 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - + Show Settings - + Reset - + Receive Rate - + Send Rate - + Always on Top - + Style - + Changes the transparency of the Bandwidth Graph - + 100 - + % Opaque - + Save - + Cancel - + Since: - + Hide Settings - + @@ -896,33 +894,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -930,77 +928,77 @@ p, li { white-space: pre-wrap; } Name - + ID - + In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + Form - + @@ -1008,57 +1006,57 @@ p, li { white-space: pre-wrap; } Form - + Friend: - + Type: - + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1066,27 +1064,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1094,180 +1092,180 @@ p, li { white-space: pre-wrap; } Name - + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1275,7 +1273,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1283,38 +1281,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1323,227 +1321,227 @@ p, li { white-space: pre-wrap; } Name - + Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private - + Public - + Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + Yes - + No - + Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - + @@ -1553,36 +1551,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - + column - + Chats - + @@ -1590,43 +1588,43 @@ Double click a chat room to enter and chat. Remove Item - + Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + Cancel - + Quick Message - + @@ -1635,354 +1633,354 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + Style - + Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + Case sensitive - + Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1990,32 +1988,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2023,7 +2021,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2031,7 +2029,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2039,325 +2037,325 @@ Double click a chat room to enter and chat. Close - + Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2365,12 +2363,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2378,131 +2376,131 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + Name - + IDs - + Personal Circles - + Public Circles - + Peers - + Status - + ID - + Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2510,174 +2508,174 @@ Double click on it to add his name on text writer. Details - + Local Address - + External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - + Include signatures - + RetroShare - + Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + none - + <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2685,582 +2683,582 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + 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 - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + None - + No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3268,129 +3266,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3398,69 +3396,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3468,241 +3466,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3711,201 +3709,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3913,42 +3911,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3959,224 +3957,224 @@ p, li { white-space: pre-wrap; } Circle Details - + Name - + <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + Public - + IDs - + Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + ID - + Type - + Name: - + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + Add - + Remove - + Search - + All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4185,38 +4183,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4225,147 +4223,147 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + RetroShare - + File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4374,131 +4372,131 @@ p, li { white-space: pre-wrap; } Post Forum Message - + Forum - + Subject - + Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + RetroShare - + Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4506,87 +4504,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4594,137 +4592,137 @@ Do you want to discard this message? Public Information - + Name: - + Location: - + Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + RetroShare - + Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4732,7 +4730,7 @@ Do you want to discard this message? users - + @@ -4740,38 +4738,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4779,42 +4777,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4822,62 +4820,62 @@ Do you want to discard this message? Details - + General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + Copy link to clipboard - + Rating - + Comments - + File Name - + @@ -4885,400 +4883,400 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + Peer Address - + Name - + PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + Source - + Proxy - + Destination - + Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + None - + Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + Unknown - + RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5287,27 +5285,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5315,113 +5313,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5429,12 +5427,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5442,7 +5440,7 @@ Do you want to discard this message? Start file - + @@ -5452,36 +5450,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5489,12 +5487,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5502,52 +5500,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5555,47 +5553,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5603,52 +5601,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5656,73 +5654,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5730,52 +5728,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5783,47 +5781,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages - + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5831,298 +5829,298 @@ Do you want to discard this message? Last Contact - + ID - + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6130,42 +6128,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6173,17 +6171,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6191,37 +6189,37 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + Name - + Search Friends - + Mark all - + Mark none - + @@ -6229,122 +6227,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6352,170 +6350,170 @@ at least one peer was not added to a group Create new Profile - + Password - + All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6524,131 +6522,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6656,138 +6654,138 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + Misc - + Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6796,44 +6794,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6845,31 +6843,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> @@ -6882,118 +6880,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7001,82 +6999,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - + @@ -7084,22 +7082,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7107,7 +7105,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7115,7 +7113,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7123,27 +7121,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7151,72 +7149,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7224,12 +7222,12 @@ p, li { white-space: pre-wrap; } Form - + Hide tabbar with one open tab - + @@ -7237,47 +7235,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7285,88 +7283,88 @@ p, li { white-space: pre-wrap; } Title - + Search Title - + Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - + Display - + Subscribe to download and read messages - + @@ -7374,97 +7372,97 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + Name - + Path - + Extension - + Hash - + Date - + Size - + Popularity - + contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7473,68 +7471,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7542,52 +7540,52 @@ p, li { white-space: pre-wrap; } Form - + Download - + TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7595,32 +7593,32 @@ p, li { white-space: pre-wrap; } Form - + Filename - + Size - + Title - + Published - + Status - + @@ -7628,37 +7626,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7666,38 +7664,38 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + Expand - + Remove Item - + Channel Description - + Loading - + New Channel - + Hide - + @@ -7705,136 +7703,136 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + Download - + Play - + Comments - + Edit - + Copy RetroShare Link - + Unsubscribe From Channel - + Expand - + Set as read and remove item - + Remove Item - + Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + Hide - + New - + 0 - + Comment - + I like this - + I dislike this - + Loading - + Comments - + Open - + Open File - + Play Media - + @@ -7842,154 +7840,154 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + Title - + Search Title - + Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + Feeds - + Files - + Subscribers - + Description: - + Posts (at neighbor nodes): - + @@ -7997,7 +7995,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8005,48 +8003,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8054,7 +8052,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8062,67 +8060,67 @@ p, li { white-space: pre-wrap; } Form - + Hot - + New - + Top - + Voter ID: - + Refresh - + Comment - + Author - + Date - + Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8130,27 +8128,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8158,32 +8156,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8191,37 +8189,37 @@ before you can comment Create New Forum - + Forum - + Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8229,38 +8227,38 @@ before you can comment Subscribe to Forum - + Expand - + Remove Item - + Forum Description - + Loading - + New Forum - + Hide - + @@ -8269,48 +8267,48 @@ before you can comment Subject: - + Unsubscribe To Forum - + Expand - + Set as read and remove item - + Remove Item - + In Reply to: - + Loading - + Forum Feed - + Hide - + @@ -8318,274 +8316,274 @@ before you can comment Form - + Start new Thread for Selected Forum - + Search forums - + Last Post - + New Thread - + Threaded View - + Flat View - + Title - + Date - + Author - + Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + Search Title - + Search Date - + Search Author - + Content - + Search Content - + <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> - + No name - + Reply - + Start New Thread - + Expand all - + Collapse all - + Mark as read - + with children - + Mark as unread - + Copy RetroShare Link - + Hide - + Expand - + [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + none - + [ ... Missing 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> - + @@ -8598,12 +8596,12 @@ before you can comment RetroShare - + No Forum Selected! - + @@ -8611,189 +8609,189 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + Subject - + On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8801,7 +8799,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8809,38 +8807,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8848,17 +8846,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8867,43 +8865,43 @@ prevents the message to be forwarded to your friends. Name - + Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8911,269 +8909,269 @@ prevents the message to be forwarded to your friends. Public - + Publish Signatures - + Open - + New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + ID - + Last Post - + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + Popularity - + Posts - + Author - + GxsIdLabel - + @@ -9181,124 +9179,124 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + Unsubscribe - + Subscribe - + Open in new tab - + Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + Mark all as read - + Mark all as unread - + AUTHD - + @@ -9306,12 +9304,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9319,60 +9317,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9380,12 +9378,12 @@ prevents the message to be forwarded to your friends. Loading - + No name - + @@ -9393,107 +9391,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - + Destination - + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - + Details - + Unknown Peer - + Pending data items - + Unknown - + Yes - + No - + @@ -9501,42 +9499,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9545,17 +9543,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9564,166 +9562,166 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + Case sensitive - + Whole words only - + Contents - + Help Topics - + Search - + Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + Close - + Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9731,66 +9729,66 @@ prevents the message to be forwarded to your friends. 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9799,12 +9797,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9812,32 +9810,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9845,114 +9843,114 @@ p, li { white-space: pre-wrap; } Form - + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9961,241 +9959,241 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + Type: - + Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10204,441 +10202,441 @@ p, li { white-space: pre-wrap; } All - + Reputation - + Search - + Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10646,294 +10644,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10941,98 +10939,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11040,43 +11038,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11089,43 +11087,43 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + Type - + @@ -11135,7 +11133,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11144,43 +11142,43 @@ These identities will soon be not supported anymore. RM - + Add - + Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11188,47 +11186,47 @@ These identities will soon be not supported anymore. Name - + KeyId - + GXSId - + Add - + GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11237,38 +11235,38 @@ These identities will soon be not supported anymore. Message History - + Copy - + Remove - + Mark all - + Delete - + Clear history - + Send - + @@ -11277,17 +11275,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11296,47 +11294,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11344,65 +11342,65 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + Options - + Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11411,172 +11409,172 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + Status - + Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + Help - + Minimize - + Maximize - + &Quit - + RetroShare - + %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + Hide - + Show - + Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11585,631 +11583,631 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + Save - + Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + Subject - + On %1, %2 wrote: - + Re: - + Fwd: - + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown - + &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Close - + From: - + Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12217,97 +12215,97 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + Add - + Edit - + Delete - + Default - + A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12315,7 +12313,7 @@ Do you want to save message ? Sub: - + @@ -12323,7 +12321,7 @@ Do you want to save message ? Message - + @@ -12331,138 +12329,138 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + From: - + To: - + Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + Download - + Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12470,131 +12468,131 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + Delete - + Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12603,67 +12601,67 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + Delete - + Print selected message - + Print - + Display - + @@ -12672,7 +12670,7 @@ Do you want to save message ? Tags - + @@ -12680,7 +12678,7 @@ Do you want to save message ? Inbox - + @@ -12688,18 +12686,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12707,283 +12705,283 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + Subject - + From - + Date - + Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + Search Date - + Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + Mark as read - + Mark as unread - + Add Star - + Edit - + Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -12992,37 +12990,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13030,17 +13028,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13048,27 +13046,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13076,83 +13074,83 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + Play Media - + Expand - + Remove Item - + from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + Hide - + Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13160,52 +13158,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13213,107 +13211,107 @@ Do you want to save message ? Filter: - + Search Network - + Name - + Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13321,59 +13319,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13381,7 +13379,7 @@ Reported error: Network - + @@ -13389,22 +13387,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13412,27 +13410,27 @@ Reported error: New Tag - + Name: - + Choose color - + OK - + Cancel - + @@ -13440,42 +13438,42 @@ Reported error: Log entries - + Options - + Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13483,235 +13481,235 @@ Reported error: News Feed - + Channels - + Forums - + Blogs - + Security - + Test - + Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13719,83 +13717,83 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + Test - + This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13803,7 +13801,7 @@ Reported error: Friend Online - + @@ -13811,41 +13809,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13853,309 +13851,309 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + RetroShare - + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + Maybe password is wrong - + You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14168,7 +14166,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - + @@ -14176,98 +14174,98 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + Expand - + Remove Item - + Name: - + Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14280,17 +14278,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + Hide - + Send Message - + @@ -14298,17 +14296,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14318,53 +14316,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14372,68 +14370,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14441,7 +14439,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + @@ -14449,62 +14447,62 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + Comment - + Summary - + Caption - + Where: - + Photo Title: - + When - + ... - + Add Comment - + Write a comment... - + @@ -14512,39 +14510,39 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14552,58 +14550,58 @@ p, li { white-space: pre-wrap; } Form - + Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14611,53 +14609,53 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + Close - + Start - + Start Slide Show - + Stop Slide Show - + @@ -14665,7 +14663,7 @@ requesting to edit it! Remove - + @@ -14673,76 +14671,76 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + Enable - + Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + About - + File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14750,37 +14748,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14788,22 +14786,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14811,27 +14809,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14840,37 +14838,37 @@ 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. - + Unknown status. - + @@ -14878,18 +14876,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14897,7 +14895,7 @@ malicious behavior of crafted plugins. Popularity - + @@ -14905,17 +14903,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14923,36 +14921,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14960,32 +14958,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -14993,57 +14991,57 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + RetroShare - + Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + Title - + Link - + @@ -15051,42 +15049,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15094,37 +15092,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15132,38 +15130,38 @@ malicious behavior of crafted plugins. Subscribe to Posted - + Expand - + Remove Item - + Posted Description - + Loading - + New Posted - + Hide - + @@ -15171,80 +15169,80 @@ malicious behavior of crafted plugins. 0 - + Site - + Comments - + Comment - + Vote up - + Vote down - + \/ - + Set as read and remove item - + New - + New Comment: - + Comment Value - + Toggle Message Read Status - + Remove Item - + Loading - + By - + @@ -15252,77 +15250,77 @@ malicious behavior of crafted plugins. Form - + Hot - + New - + Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + Next - + RetroShare - + Please create or choose a Signing Id before Voting - + Previous - + 1-10 - + @@ -15330,17 +15328,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15348,7 +15346,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15356,37 +15354,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15395,52 +15393,52 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + Name - + Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15449,67 +15447,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15518,98 +15516,98 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + Name: - + Location: - + Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + RetroShare - + Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15617,61 +15615,61 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + Cancel - + Post Pulse to Wire - + @@ -15679,19 +15677,19 @@ and use the import button to load it From - + Date - + ... - + @@ -15700,375 +15698,375 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + Forum not found - + Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + RetroShare - + Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16076,306 +16074,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16383,19 +16381,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16404,7 +16402,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> - + @@ -16412,7 +16410,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16421,73 +16419,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16495,153 +16493,153 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + Add - + Remove - + Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16649,12 +16647,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16662,17 +16660,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16680,17 +16678,17 @@ p, li { white-space: pre-wrap; } Form - + The loading of embedded images is blocked. - + Load images - + @@ -16698,52 +16696,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16751,17 +16749,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16769,17 +16767,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16787,22 +16785,22 @@ p, li { white-space: pre-wrap; } Download... - + Download - + Recommend in a message to... - + Collection - + @@ -16810,22 +16808,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16833,27 +16831,27 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + Unknown - + @@ -16861,33 +16859,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16895,32 +16893,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - + Merge - + Cancel - + @@ -16928,218 +16926,218 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + Cancel - + Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + ... - + <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + Save - + Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + Overwrite - + Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17148,17 +17146,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17166,21 +17164,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - + @@ -17189,119 +17187,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - + Failed - + Okay - + Waiting - + Downloading - + Complete - + Queued - + Paused - + Checking... - + Unknown - + @@ -17309,7 +17307,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17317,134 +17315,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17453,7 +17451,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17461,7 +17459,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17469,282 +17467,282 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + Search - + Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + Type - + Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice - + Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + Remove - + Remove All - + Folder - + New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17752,81 +17750,81 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + Expand - + Remove Item - + IP address: - + Peer ID: - + Location: - + Peer Name: - + Unknown Peer - + Hide - + but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17834,108 +17832,108 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + Expand - + Remove Item - + Name: - + Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17944,42 +17942,42 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + Hide - + Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -17987,107 +17985,107 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + Local Address - + NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18096,89 +18094,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18187,300 +18185,300 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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 - + @@ -18489,364 +18487,364 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + Status - + Origin - + Reason - + Comment - + IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + Remove - + 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18854,27 +18852,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18882,27 +18880,27 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + Reset - + Permissions - + 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> - + @@ -18910,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + @@ -18918,7 +18916,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18926,23 +18924,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18950,148 +18948,148 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - + Add a Share Directory - + Remove - + Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19099,133 +19097,133 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + Reset - + Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + Download - + Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19233,48 +19231,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - + Download complete - + Lobby - + @@ -19282,42 +19280,42 @@ Select the Friends with which you want to Share your Channel. Event: - + Filename: - + Browse - + Event - + Filename - + Open File - + Sound - + Default - + @@ -19325,12 +19323,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19338,12 +19336,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19351,61 +19349,61 @@ Select the Friends with which you want to Share your Channel. RetroShare - + Password - + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19414,7 +19412,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19423,7 +19421,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19432,7 +19430,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19440,88 +19438,88 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + Options - + Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19530,165 +19528,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19696,30 +19694,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19728,43 +19726,43 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + Style - + None - + Solid - + Gradient - + @@ -19772,111 +19770,111 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + Download File - + Download - + Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + DOWNLOAD - + LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + Open - + Open File - + Copy RetroShare Link - + @@ -19884,17 +19882,17 @@ p, li { white-space: pre-wrap; } Subscribed - + Unsubscribe - + Subscribe - + @@ -19902,7 +19900,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19910,27 +19908,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19938,12 +19936,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19951,12 +19949,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19964,58 +19962,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20023,28 +20021,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20052,231 +20050,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20284,27 +20282,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20313,269 +20311,269 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + Name i.e: file name - + Size i.e: file size - + Completed - + Status - + Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + Search - + Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + Cancel - + Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + RetroShare - + @@ -20583,209 +20581,209 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - + Path - + Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20794,101 +20792,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20897,13 +20895,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20912,32 +20910,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20945,12 +20943,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20958,42 +20956,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21001,47 +20999,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21053,7 +21051,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21061,22 +21059,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21084,22 +21082,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21107,57 +21105,57 @@ p, li { white-space: pre-wrap; } OK - + Cancel - + Yes - + No - + Help - + Retry - + Show Log - + Show Settings - + Continue - + Quit - + Browse - + @@ -21165,62 +21163,62 @@ p, li { white-space: pre-wrap; } Form - + Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21228,123 +21226,123 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + Description: - + Share Options - + Public - + All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21353,107 +21351,107 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + Edit - + New Page - + Refresh - + Search - + My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21461,127 +21459,127 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + Status - + Preview - + Cancel - + Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21589,37 +21587,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21627,98 +21625,98 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + New - + from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21727,12 +21725,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21741,107 +21739,107 @@ p, li { white-space: pre-wrap; } Unknown Unknown (size) - + B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + Unknown - + < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21849,133 +21847,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - + No - + Last hour - + Today - + Never - + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_ar.ts b/retroshare-gui/src/lang/retroshare_ar.ts index b639d544e..01753acbc 100644 --- a/retroshare-gui/src/lang/retroshare_ar.ts +++ b/retroshare-gui/src/lang/retroshare_ar.ts @@ -2,12 +2,13 @@ AWidget - + + Retroshare version - + إصدار ريتروشير - + version الإصدار @@ -25,7 +26,7 @@ About - + حول @@ -33,48 +34,53 @@ Form - + من About - + حول Copy Info - + معلومات عن النسخة close - + إغلاق - + Max score: %1 - + النتيجة العظمى: %1 Score: %1 - + النتيجة: %1 Level: %1 - + المستوى: %1 About RetroShare - + حول ريتروشير Have fun ;-) + + + Only Hidden Node + + AddCommentDialog @@ -618,22 +624,22 @@ p, li { white-space: pre-wrap; } - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status @@ -658,17 +664,17 @@ p, li { white-space: pre-wrap; } - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: @@ -795,7 +801,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -906,6 +912,16 @@ p, li { white-space: pre-wrap; } Count + + + Average + + + + + Total + + BwCtrlWindow @@ -990,10 +1006,10 @@ p, li { white-space: pre-wrap; } Form - + من - + Friend: صديق: @@ -1024,6 +1040,21 @@ p, li { white-space: pre-wrap; } + Legend: + + + + + Current + + + + + Total + + + + Log scale @@ -1051,7 +1082,7 @@ p, li { white-space: pre-wrap; } - + Open each channel in a new tab @@ -1059,12 +1090,7 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - - - - + Name @@ -1074,7 +1100,7 @@ p, li { white-space: pre-wrap; } تغيير اللقلب - + Mute participant @@ -1119,14 +1145,7 @@ p, li { white-space: pre-wrap; } الموضوع: %1 - - - - Lobby management - - - - + %1 changed his name to: %2 %1 بدل اسمه إلى: %2 @@ -1146,7 +1165,7 @@ p, li { white-space: pre-wrap; } ثواني - + Start private chat إبدأ الدردشة الخاصة @@ -1181,7 +1200,7 @@ p, li { white-space: pre-wrap; } - + Room chat @@ -1227,7 +1246,14 @@ p, li { white-space: pre-wrap; } + + + Chat room management + + + + %1 joined the room. @@ -1253,7 +1279,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chats @@ -1292,7 +1318,7 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Name اسم @@ -1314,21 +1340,23 @@ p, li { white-space: pre-wrap; } + Public Subscribed chat rooms - + Private chat rooms + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> @@ -1363,12 +1391,17 @@ p, li { white-space: pre-wrap; } - + + Copy RetroShare Link + + + + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. @@ -1390,12 +1423,17 @@ Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + + Choose a non anonymous identity for this chat room: + + + + Choose an identity for this chat room: @@ -1405,7 +1443,7 @@ Double click a chat room to enter and chat. إنشاء تجمع دردشة - + [No topic provided] [لم يتم ايراد مضوع] @@ -1416,7 +1454,7 @@ Double click a chat room to enter and chat. - + Private خاص @@ -1431,7 +1469,7 @@ Double click a chat room to enter and chat. - + Remove Auto Subscribe @@ -1456,7 +1494,7 @@ Double click a chat room to enter and chat. مشترك - + Columns أعمدة @@ -1516,17 +1554,17 @@ Double click a chat room to enter and chat. - + Default identity is anonymous - + No anonymous IDs - + Show @@ -1540,7 +1578,7 @@ Double click a chat room to enter and chat. عمود - + Chats @@ -1775,7 +1813,12 @@ Double click a chat room to enter and chat. دردشة خاصة - + + Choose your default font for Chat. + + + + Incoming الوارد @@ -1829,11 +1872,6 @@ Double click a chat room to enter and chat. /me is sending a message with /me - - - 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> @@ -1920,7 +1958,7 @@ Double click a chat room to enter and chat. - + Private chat invite from @@ -1939,6 +1977,11 @@ Double click a chat room to enter and chat. Valid until : + + + Chats + + ChatStyle @@ -1992,17 +2035,17 @@ Double click a chat room to enter and chat. ChatWidget - + Close إغلاق - + Send إرسال - + Bold غامق @@ -2017,7 +2060,7 @@ Double click a chat room to enter and chat. مائل - + Insert emoticon @@ -2027,12 +2070,12 @@ Double click a chat room to enter and chat. إرفاق صورة - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike @@ -2129,12 +2172,12 @@ Double click a chat room to enter and chat. - + is typing... يـكتب... - + It remains %1 characters after HTML conversion. @@ -2146,7 +2189,12 @@ after HTML conversion. - + + Choose your font. + + + + Do you really want to physically delete the history? @@ -2161,7 +2209,7 @@ after HTML conversion. تحميل ملف صورة - + Save as... حفظ باسم... @@ -2177,8 +2225,8 @@ after HTML conversion. - Messages you send will be delivered after Friend is again Online - الرسائل التي ارسلتها سيتم ايصالها لدى اتصال صديقك مجددا + Messages you send will be delivered after Friend is again Online. + @@ -2218,7 +2266,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2233,7 +2281,7 @@ after HTML conversion. - + (Status) @@ -2243,12 +2291,12 @@ after HTML conversion. - + Attach a File إرفاق ملف - + WARNING: Could take a long time on big history. @@ -2259,12 +2307,28 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + + Person id: + + + + + +Double click on it to add his name on text writer. + + + + + Unsigned + + + + items found. @@ -2279,12 +2343,12 @@ after HTML conversion. - + Type a message here - + Don't stop to color after @@ -2447,59 +2511,58 @@ after HTML conversion. التفاصيل - - Peer Address - - - - - + + Local Address عنوان محلي - + External Address عنوان خارجي - + + Node info: + + + + + Current address: + + + + Dynamic DNS نظام اسماء نطاقات ديناميكي - + Port منفذ - - - Addresses list - قائمة العناوين - - - + Include signatures إدراج تواقيع - - + + RetroShare ريتروشير - - + + Error : cannot get peer details. - + Encryption تشفير @@ -2509,22 +2572,12 @@ after HTML conversion. غير متصل - - Peer Addresses - - - - + Retroshare node details - - Friend info - - - - + Node name : @@ -2559,12 +2612,12 @@ after HTML conversion. - - Connectivity + + List of known addresses: - + Retroshare Certificate @@ -2605,7 +2658,7 @@ after HTML conversion. - + <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> @@ -2648,8 +2701,14 @@ after HTML conversion. - - + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to download RetroShare) + + + + + Include signatures إدراج تواقيع @@ -2669,7 +2728,17 @@ after HTML conversion. - + + Open Cert of your friend from File + + + + + Open certificate + + + + Please, paste your friend's Retroshare certificate into the box below @@ -2794,7 +2863,7 @@ after HTML conversion. - + Invite Friends by Email دعوة الأصدقاء بالبريد الإلكتروني @@ -2820,15 +2889,15 @@ after HTML conversion. - - + + Friend request طلب صداقة - - + + Details about the request @@ -2874,7 +2943,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: @@ -2894,13 +2963,7 @@ resources. - - &Send an Invitation by Email - (Your friend will receive an email with instructions how to to download RetroShare) - - - - + Recommend many friends to each other @@ -2920,12 +2983,12 @@ resources. - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + Add friend to group: أضف صديق إلى مجموعة: @@ -2989,7 +3052,7 @@ resources. - + Abnormal size read is bigger than memory block. @@ -3029,18 +3092,18 @@ resources. - - + + Certificate Load Failed فشل تحميل الشهادة - + Cannot get peer details of PGP key %1 - + Any peer I've not signed @@ -3070,7 +3133,7 @@ resources. - + Certificate appears to be valid @@ -3080,13 +3143,44 @@ resources. - - + + RetroShare Invitation دعوة ريتروشير - + + + +Warning: In your File-Transfer option, you select allow direct download to Yes. + + + + + + +Warning: In your File-Transfer option, you select allow direct download to No. + + + + + + + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? + + + + + This key is already on your trusted list + + + + + You have already signed this key + + + + Ultimate @@ -3112,12 +3206,12 @@ resources. - + You have a friend request from - + Certificate Load Failed:file %1 not found @@ -3162,19 +3256,21 @@ resources. - + Save as... حفظ باسم... - + + RetroShare Certificate (*.rsc );;All Files (*) - + + Select Certificate @@ -3255,17 +3351,17 @@ resources. - + The text below is your Retroshare certificate. You have to provide it to your friend - + Message: رسالة: - + Recommend friends @@ -3275,7 +3371,7 @@ resources. إلى - + Please select at least one friend for recommendation. @@ -3290,7 +3386,7 @@ resources. - + This key is already in your keyring @@ -3303,7 +3399,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3335,7 +3431,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3345,22 +3441,22 @@ 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 - + Certificate Load Failed:something is wrong with %1 @@ -3373,7 +3469,7 @@ even if you don't make friends. - + Connecting to: @@ -3404,7 +3500,7 @@ even if you don't make friends. - + DHT Startup @@ -3425,7 +3521,7 @@ even if you don't make friends. - + UDP Setup @@ -3435,17 +3531,30 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> + + + + Connection Assistant - + Invalid Peer ID - + Unknown State @@ -3505,7 +3614,7 @@ even if you don't make friends. - + Lookup requires DHT @@ -3531,12 +3640,12 @@ even if you don't make friends. - + Peer Offline - + Peer Firewalled @@ -3546,7 +3655,7 @@ even if you don't make friends. - + Connection In Progress @@ -3797,28 +3906,15 @@ even if you don't make 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-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> - - - - + - - + + N/A - + UNVERIFIABLE FORWARD! @@ -3828,17 +3924,17 @@ p, li { white-space: pre-wrap; } - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. @@ -3869,7 +3965,17 @@ p, li { white-space: pre-wrap; } اسم - + + <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> + + + + + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> + + + + Public عام @@ -3920,22 +4026,12 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - - - - + Contact author: - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - - - - + [Circle Admin] @@ -4125,7 +4221,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4192,7 +4288,7 @@ p, li { white-space: pre-wrap; } إسحب و أفلت الملفات من نتائج البحث - + Paste RetroShare Links لصق روابط ريتروشير @@ -4218,28 +4314,28 @@ p, li { white-space: pre-wrap; } لم يعضر على الملف أو اسم الملف غير مقبول. - + Add Extra File إضافة ملف إضافي - - + + RetroShare ريتروشير - + File already Added and Hashed - + Please add a Subject يرجى إضافة موضوع - + Load thumbnail picture @@ -4255,12 +4351,17 @@ p, li { white-space: pre-wrap; } - + You are about to add files you're not actually sharing. Do you still want this to happen? - + + Edit Channel Post + + + + About to post un-owned files to a channel. @@ -4269,7 +4370,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4314,34 +4415,50 @@ p, li { white-space: pre-wrap; } - + + Edit Message + + + + No Forum - + In Reply to - - + + RetroShare ريتروشير - + Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + + Cancel Forum Message + + + + + Forum Message has not been sent yet! +Do you want to discard this message? + + + + Add Extra File إضافة ملف إضافي @@ -4367,28 +4484,17 @@ p, li { white-space: pre-wrap; } - + Send إرسال - - - Forum Message - - - - - Forum Message has not been Sent. -Do you want to reject this message? - - Post as - + Congrats, you found a bug! @@ -4689,7 +4795,22 @@ Do you want to reject this message? غيغابايت - + + Faster + + + + + Average + + + + + Slower + + + + File Never Seen @@ -5126,7 +5247,7 @@ Do you want to reject this message? مجهول - + RELAY END @@ -5276,7 +5397,7 @@ Do you want to reject this message? - + Peers @@ -5531,7 +5652,7 @@ Do you want to reject this message? FilesDefs - + Picture صورة @@ -5605,7 +5726,7 @@ Do you want to reject this message? FlatStyle_RDM - + Friends Directories مجلدات الأصدقاء @@ -5614,6 +5735,11 @@ Do you want to reject this message? My Directories مجلداتي + + + # Files + + Size @@ -5639,6 +5765,16 @@ Do you want to reject this message? Directory مجلد + + + Column %1 + + + + + Row %1 + + ForumPage @@ -5658,12 +5794,7 @@ Do you want to reject this message? - - Forum - منتدى - - - + Load embedded images @@ -5687,6 +5818,11 @@ Do you want to reject this message? Open each forum in a new tab + + + Forums + + FriendList @@ -5696,7 +5832,13 @@ Do you want to reject this message? آخر اتصال - + + + ID + + + + Hide Offline Friends إخفاء الأصدقاء غير المتصلين @@ -5727,18 +5869,18 @@ Do you want to reject this message? - + Trusted nodes - + Show Groups إظهار المجموعات - + Group المجموعة @@ -5748,7 +5890,7 @@ Do you want to reject this message? صديق - + Edit Group تعديل المجموعة @@ -5764,27 +5906,33 @@ Do you want to reject this message? دردشة - + Copy certificate link نسخ رابط الشهادة - + Add to group أضف إلى المجموعة - + + Search - + + Search ID + + + + Sort by state - + Profile details @@ -5839,12 +5987,12 @@ Do you want to reject this message? - + Available متاح - + Do you want to remove this Friend? هل تريد إزالة هذا الصديق؟ @@ -5891,34 +6039,29 @@ at least one peer was not added to a group - + Select file for importing your 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! @@ -5930,22 +6073,22 @@ at least one peer was not added to a group - + Show Items - + IP - + Attempt to connect - + Create new group @@ -5955,22 +6098,22 @@ at least one peer was not added to a group - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group @@ -6049,22 +6192,27 @@ at least one peer was not added to a group - + Sort by state + + + Filter only connected + + Name اسم - + Search Friends - + Mark all @@ -6171,12 +6319,12 @@ at least one peer was not added to a group - + <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. @@ -6192,7 +6340,7 @@ at least one peer was not added to a group - + Set your status message here. @@ -6205,107 +6353,69 @@ at least one peer was not added to a group إنشاء ملف شخصي جديد - + Password كلمة السر - + All fields are required with a minimum of 3 characters جميع الحثول مطلوبة و يجب أن تحتوي على 3 محارف على الأقل - - Password (check) - - - - - [Required] Type the same password again here. - - - - + Passwords do not match - + Port منفذ - - + + Use BOB + + + + + This password is for PGP - - Generate new node - - - - + You can use it now to create a new node. - - Invalid hidden node - - - - + Node field is required with a minimum of 3 characters - - Generating new node key, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. - -Fill in your password when asked, to sign your new key. - - - - + Failed to generate your new certificate, maybe PGP password is wrong! - - <html><head/><body><p>Use this if you need to import an existing profile, if you want to generate a new node with an already existing key, or if you want to create a TOR/I2P hidden node.</p></body></html> + + Options - - You can create a new profile with this form. -Alternatively you can use an existing profile. Just uncheck "Create a new profile" + + PGP Key Length - - 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. - - - - - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - - - - - No node exists for this profile. - - - - - + + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> @@ -6320,108 +6430,78 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + + Use existing profile + + + + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - - Re-use an existing profile - - - - - Profile name - - - - - Randomness - - - - - Node type - - - - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - - Chat identity - - - - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + + TextLabel + + + + + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - - PGP key length - - - - + Click to create your node and/or profile - - Generate new profile and node - - - - - 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" - - - - + Export profile @@ -6455,38 +6535,13 @@ and use the import button to load it - - + + Import profile - - [Required] Examples: Home, Laptop,...(Visible to friends). - - - - - [Optional] Tor/I2P address (Example: xa76giaf6ifda7ri63i263.onion) - - - - - [Required] Visible to friends, and friends of friends. - - - - - [Optional] Used to write in chat rooms and forums. Can be set later. - - - - - [Required] This password protects your data. Dont forget it! - - - - + Create new profile and new Retroshare node @@ -6496,12 +6551,52 @@ and use the import button to load it - - Disabled until all fields correctly set and enough randomness collected. + + Tor/I2P address - + + Username + + + + + Chat name + + + + + Password again + + + + + <p>Node creation is disabled until all fields correctly set.</p> + + + + + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> + + + + + I2P instance address with BOB enabled + + + + + I2P instance address + + + + + hidden service address + + + + RetroShare profile files (*.asc);;All files (*) @@ -6526,7 +6621,7 @@ and use the import button to load it - + The GXS nickname is too short. Please input at least %1 characters. @@ -6536,12 +6631,7 @@ 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 @@ -6549,12 +6639,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6653,12 +6743,12 @@ and use the import button to load it - You have enough right. + You have sufficient rights. - You don't have enough right. Run RetroShare as Admin to change this setting. + You don't have sufficient rights. Run RetroShare as Admin to change this setting. @@ -6672,7 +6762,7 @@ and use the import button to load it - + Error خطأ @@ -6737,18 +6827,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:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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; } @@ -6809,7 +6888,18 @@ 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:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + + + + Advanced: Open Firewall Port متقدم: فتح منفذ ضمن الجدار الناري @@ -7021,7 +7111,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7237,7 +7327,7 @@ p, li { white-space: pre-wrap; } - Sort by Posts + Sort by Number of Posts @@ -7378,7 +7468,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels قنوات @@ -7399,12 +7489,12 @@ p, li { white-space: pre-wrap; } - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels القنوات الشترك بها @@ -7578,7 +7668,7 @@ p, li { white-space: pre-wrap; } - + Expand توسيع @@ -7593,12 +7683,12 @@ p, li { white-space: pre-wrap; } وصف القناة - + Loading جاري التحميل - + New Channel قناة جديدة @@ -7632,17 +7722,21 @@ p, li { white-space: pre-wrap; } - + Play تشغيل - - + Comments تعليقات + + + Edit + + Copy RetroShare Link @@ -7655,7 +7749,7 @@ p, li { white-space: pre-wrap; } - + Expand توسيع @@ -7670,17 +7764,17 @@ p, li { white-space: pre-wrap; } إزالة عنصر - + Channel Feed - + Files ملفات - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. @@ -7690,7 +7784,7 @@ p, li { white-space: pre-wrap; } إخفاء - + New جديد @@ -7700,8 +7794,8 @@ p, li { white-space: pre-wrap; } - - + + Comment تعليق @@ -7716,12 +7810,17 @@ p, li { white-space: pre-wrap; } - + Loading جاري التحميل - + + Comments + + + + Open @@ -7744,7 +7843,13 @@ p, li { white-space: pre-wrap; } إنشر على القناة - + + + Add new post + + + + Loading جاري التحميل @@ -7754,7 +7859,7 @@ p, li { white-space: pre-wrap; } - + Title عنوان @@ -7819,7 +7924,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download تعطيل التحميل التلقائي @@ -7870,12 +7975,12 @@ p, li { white-space: pre-wrap; } ملفات - + Subscribers - + Description: الوصف: @@ -7893,6 +7998,55 @@ p, li { white-space: pre-wrap; } رسالة + + GxsCircleItem + + + Details + + + + + Remove Item + + + + + + for identity + + + + + You received a membership request for circle: + + + + + Grant membership request + + + + + Revoke membership request + + + + + You received an invitation for circle: + + + + + Accept invitation + + + + + Received event from unknown Circle: + + + GxsCommentContainer @@ -7972,7 +8126,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -7981,6 +8135,11 @@ p, li { white-space: pre-wrap; } Submit Comment + + + Copy Comment + + Vote Up @@ -8014,7 +8173,7 @@ p, li { white-space: pre-wrap; } - + Comment Signing Error @@ -8072,7 +8231,7 @@ before you can comment - + Expand توسيع @@ -8087,12 +8246,12 @@ before you can comment وصف المنتدى - + Loading جاري التحميل - + New Forum منتدى جديد @@ -8117,7 +8276,7 @@ before you can comment - + Expand توسيع @@ -8137,7 +8296,7 @@ before you can comment - + Loading جاري التحميل @@ -8147,7 +8306,7 @@ before you can comment - + Hide إخفاء @@ -8165,7 +8324,7 @@ before you can comment - + Search forums @@ -8175,7 +8334,12 @@ before you can comment آخر مساهمة - + + New Thread + + + + Threaded View @@ -8186,7 +8350,7 @@ before you can comment - + Title عنوان @@ -8199,28 +8363,28 @@ before you can comment - + Author المؤلف - + Save image - - + + Loading جاري التحميل - + Reply Message الرد على الرسالة - + Previous Thread @@ -8230,12 +8394,12 @@ before you can comment - + Download all files تحميل كل الملفات - + Next unread @@ -8275,12 +8439,14 @@ before you can comment - + + + Reply رد - + Start New Thread @@ -8313,12 +8479,12 @@ before you can comment - + Copy RetroShare Link نسخ رابط ريتروشير - + Hide إخفاء @@ -8328,7 +8494,7 @@ before you can comment توسيع - + [Banned] @@ -8363,9 +8529,9 @@ before you can comment - - - + + + Distribution @@ -8375,7 +8541,7 @@ before you can comment - + [ ... Redacted message ... ] @@ -8400,7 +8566,7 @@ before you can comment [ ... رسالة مفقودة ... ] - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -8420,46 +8586,60 @@ 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 الرسالة الأصلية - + + New thread + + + + Read status - + + Edit + + + + Reply to author with private message @@ -8495,12 +8675,12 @@ before you can comment - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive @@ -8531,7 +8711,7 @@ before you can comment - + Information for this identity is currently missing. @@ -8554,7 +8734,17 @@ prevents the message to be forwarded to your friends. - + + (Latest) + + + + + (Old) + + + + You cant act on the author to a non-existant Message @@ -8579,7 +8769,7 @@ prevents the message to be forwarded to your friends. - + Forum name @@ -8599,7 +8789,7 @@ prevents the message to be forwarded to your friends. الوصف - + By @@ -8615,12 +8805,12 @@ prevents the message to be forwarded to your friends. 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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums منتديات @@ -8654,7 +8844,7 @@ prevents the message to be forwarded to your friends. GxsForumsFillThread - + Waiting @@ -8714,25 +8904,15 @@ prevents the message to be forwarded to your friends. - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - - - - - - + + + Public عام - - Only For Your Friends - - - - + Publish Signatures @@ -8819,12 +8999,12 @@ prevents the message to be forwarded to your friends. - + Contacts: - + Restricted to circle: @@ -8847,18 +9027,18 @@ prevents the message to be forwarded to your friends. - + Message tracking - - + + PGP signature required - + Never @@ -8873,7 +9053,7 @@ prevents the message to be forwarded to your friends. يرجى إضافة اسم - + PGP signature from known ID required @@ -8883,7 +9063,7 @@ prevents the message to be forwarded to your friends. - + Submit Group Changes @@ -8904,7 +9084,7 @@ prevents the message to be forwarded to your friends. - + Set a descriptive description here @@ -8924,7 +9104,12 @@ prevents the message to be forwarded to your friends. آخر مساهمة - + + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> + + + + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> @@ -8939,7 +9124,12 @@ prevents the message to be forwarded to your friends. - + + Restricted node group + + + + Posts permissions: @@ -9007,7 +9197,7 @@ prevents the message to be forwarded to your friends. معاينة الطباعة - + Unsubscribe إلغاء الاشتراك @@ -9104,7 +9294,7 @@ prevents the message to be forwarded to your friends. - + AUTHD @@ -9112,7 +9302,7 @@ prevents the message to be forwarded to your friends. GxsIdChooser - + No Signature @@ -9196,10 +9386,118 @@ prevents the message to be forwarded to your friends. + + GxsTransportStatistics + + + Router Statistics + + + + + GroupBox + + + + + ID + + + + + Destination + + + + + Data status + + + + + Data size + + + + + Data hash + + + + + Sending time (secs ago) + + + + + Group ID + + + + + Gxs Transport Groups: + + + + + Group ID / Author + + + + + Number of messages / Publish TS + + + + + Local size of data + + + + + Subscribed + + + + + Popularity + + + + + Details + + + + + Unknown Peer + + + + + Pending data items + + + + + Unknown + + + + + Yes + + + + + No + + + GxsTunnelsDialog - + Authenticated tunnels: @@ -9545,10 +9843,10 @@ p, li { white-space: pre-wrap; } Form - + من - + Did you receive a certificate from a friend? @@ -9563,7 +9861,7 @@ p, li { white-space: pre-wrap; } - + Share your RetroShare Key @@ -9590,7 +9888,12 @@ private and secure decentralized communication platform. - + + Do you need help with RetroShare? + + + + Open Web Help @@ -9621,7 +9924,7 @@ private and secure decentralized communication platform. - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>The first thing you have to do is to <b>make friends</b>. Once you create a network of Retroshare nodes, or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, use the current page to exchange certificates with other persons you want your Retroshare node to connect to.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to meet other people anonymously.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> @@ -9883,7 +10186,7 @@ p, li { white-space: pre-wrap; } - + Respond now: @@ -9896,8 +10199,8 @@ p, li { white-space: pre-wrap; } IdDialog - - + + All @@ -9912,12 +10215,12 @@ p, li { white-space: pre-wrap; } بحث - + Anonymous Id - + Create new Identity @@ -9942,29 +10245,17 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - - - - + Auto-Ban all identities signed by the same node @@ -9995,9 +10286,9 @@ p, li { white-space: pre-wrap; } - + - + Circles @@ -10043,7 +10334,7 @@ p, li { white-space: pre-wrap; } - + Owner node ID : @@ -10053,7 +10344,7 @@ p, li { white-space: pre-wrap; } - + () @@ -10063,17 +10354,17 @@ p, li { white-space: pre-wrap; } - + Send message - + Identity info - + Identity ID : @@ -10083,12 +10374,12 @@ p, li { white-space: pre-wrap; } - + Create new... - + Type: النوع: @@ -10098,7 +10389,7 @@ 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> @@ -10108,13 +10399,26 @@ 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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> + + + + Negative - + Neutral @@ -10125,17 +10429,17 @@ p, li { white-space: pre-wrap; } - + <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: - + Anonymous مجهول @@ -10150,12 +10454,12 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - + My own identities @@ -10165,7 +10469,7 @@ p, li { white-space: pre-wrap; } - + Show Items @@ -10180,7 +10484,7 @@ p, li { white-space: pre-wrap; } - + Other circles @@ -10260,12 +10564,7 @@ p, li { white-space: pre-wrap; } - - Unknown ID : - - - - + Identity ID: @@ -10320,7 +10619,7 @@ p, li { white-space: pre-wrap; } - + Request subscription @@ -10358,7 +10657,7 @@ p, li { white-space: pre-wrap; } - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -10367,12 +10666,12 @@ These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node @@ -10384,15 +10683,20 @@ These identities will soon be not supported anymore. - + [unverified] - + Identity owned by you, linked to your Retroshare node + + + Identity owned by you, linked to your Retroshare node but not yet validated + + Anonymous identity, owned by you @@ -10404,7 +10708,28 @@ These identities will soon be not supported anymore. - + + Message in chat room %1 + + + + + information + + + + + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. + + + + + + Copy identity to clipboard + + + + Send invite? @@ -10414,7 +10739,7 @@ These identities will soon be not supported anymore. - + Banned @@ -10424,7 +10749,12 @@ These identities will soon be not supported anymore. - + + Unknown ID: + + + + positive @@ -10504,7 +10834,7 @@ These identities will soon be not supported anymore. - + Message/vote/comment @@ -10514,12 +10844,7 @@ These identities will soon be not supported anymore. - - Message in chat lobby %1 - - - - + Distant message signature validation. @@ -10569,7 +10894,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -10594,7 +10919,7 @@ These identities will soon be not supported anymore. - + Distant chat cannot work @@ -10609,21 +10934,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -10633,7 +10958,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -10648,7 +10973,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -10658,7 +10983,7 @@ These identities will soon be not supported anymore. - + Distant chat refused with this person. @@ -10668,7 +10993,7 @@ These identities will soon be not supported anymore. - + +50 Known PGP @@ -10683,17 +11008,17 @@ These identities will soon be not supported anymore. - + Do you really want to delete this identity? - + Owned by - + Node name: @@ -10703,7 +11028,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -10755,7 +11080,7 @@ These identities will soon be not supported anymore. - + @@ -10765,13 +11090,13 @@ These identities will soon be not supported anymore. - + Edit identity - + Error getting key! @@ -10791,7 +11116,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -10846,7 +11171,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -10947,7 +11272,7 @@ These identities will soon be not supported anymore. ImageUtil - + Save image @@ -10966,18 +11291,18 @@ These identities will soon be not supported anymore. LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -10987,17 +11312,27 @@ These identities will soon be not supported anymore. - - Recommend in a message to + + Recommend in a message to... - + + Share on channel... + + + + + Share on forum... + + + + Set command for opening this file - + Collection @@ -11021,7 +11356,7 @@ These identities will soon be not supported anymore. - + Options خيارات @@ -11053,12 +11388,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -11137,7 +11472,7 @@ These identities will soon be not supported anymore. ريتروشير - + %1 new message @@ -11147,7 +11482,7 @@ These identities will soon be not supported anymore. - + Down: %1 (kB/s) @@ -11167,7 +11502,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -11217,7 +11552,7 @@ These identities will soon be not supported anymore. - + Statistics @@ -11237,7 +11572,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -11246,7 +11581,7 @@ These identities will soon be not supported anymore. MessageComposer - + Compose أكتب @@ -11348,7 +11683,7 @@ These identities will soon be not supported anymore. - + Tags وسوم @@ -11493,7 +11828,7 @@ These identities will soon be not supported anymore. - + This friend is suggested by هذا الصديق قد تم اقتراحه من قبل @@ -11509,12 +11844,12 @@ These identities will soon be not supported anymore. - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -11525,7 +11860,7 @@ Do you want to save message to draft box? لصق رابط ريتروشير - + Add to "To" @@ -11790,7 +12125,7 @@ Do you want to save message ? - + Respond now: @@ -11805,7 +12140,7 @@ Do you want to save message ? من: - + Friend Nodes @@ -11850,13 +12185,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -11958,11 +12293,6 @@ Do you want to save message ? Edit Tag تعديل وسم - - - Message - رسالة - Distant messages: @@ -11973,6 +12303,11 @@ Do you want to save message ? Load embedded images + + + Mail + + MessageToaster @@ -11993,7 +12328,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -12003,12 +12338,12 @@ Do you want to save message ? تنزيل كل الملفات الموصى بها - + Subject: الموضوع: - + From: من: @@ -12018,22 +12353,22 @@ Do you want to save message ? إلى: - + Cc: - + Bcc: - + Tags: الوسوم: - + Send Invite @@ -12073,7 +12408,7 @@ Do you want to save message ? أضف %1 كصديق - + No subject لا يوجد موضوع @@ -12083,7 +12418,7 @@ Do you want to save message ? تحميل - + Send invite? @@ -12094,12 +12429,12 @@ Do you want to save message ? - + Download all تنزيل الكل - + Print Document طباعة مستند @@ -12114,12 +12449,12 @@ Do you want to save message ? ملفات HTML (*.htm *.html);;جميع الملفات (*) - + Load images always for this message - + Hide the attachment pane @@ -12132,7 +12467,7 @@ Do you want to save message ? MessageWindow - + New Message رسالة جديدة @@ -12265,7 +12600,7 @@ Do you want to save message ? MessagesDialog - + New Message رسالة جديدة @@ -12332,7 +12667,7 @@ Do you want to save message ? - + Tags @@ -12340,7 +12675,7 @@ Do you want to save message ? - + Inbox @@ -12389,7 +12724,7 @@ Do you want to save message ? عرض سريع - + Print... إطبع... @@ -12437,7 +12772,7 @@ Do you want to save message ? - + Reply to All @@ -12455,12 +12790,12 @@ Do you want to save message ? - + From من - + Date التاريخ @@ -12488,12 +12823,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date إنقر للترتيب وفق التاريخ @@ -12553,7 +12888,7 @@ Do you want to save message ? - + Starred @@ -12659,17 +12994,17 @@ Do you want to save message ? - + Messages رسائل - + Click to sort by signature - + This message was signed and the signature checks @@ -12710,7 +13045,7 @@ Do you want to save message ? MimeTextEdit - + Paste as plain text @@ -12885,44 +13220,12 @@ Do you want to save message ? - + Name اسم - - Did I authenticated peer - - - - - Did I sign his PGP key - - - - - - Profile - - - - - Has signed my key - - - - - Cert Id - - - - - - Last used - - - - + Clear مسح @@ -12982,12 +13285,12 @@ Do you want to save message ? إنشاء ملف شخصي جديد - + Peer ID - + Remove unused keys... @@ -13034,134 +13337,23 @@ For security, your keyring was previously backed-up to file Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - Personal signature - توقيع شخصي - - - - PGP key signed by you - - - - - Marginally trusted peer - - - Fully trusted peer - - - - - Untrusted peer - - - - - Yes - - - - - No - - - - - Last hour - - - - - Today - - - - - Never - - - - - %1 days ago - - - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - - - - - yourself - - - - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - - Has signed your key? - - - - - Id - - - - - Do you accept connections signed by this profile? - - - - - Name of the profile - - - - - This column indicates trust level and whether you signed the profile PGP key - - - - - Did that peer sign your own profile PGP key - - - - - PGP Key Id of that profile - - - - - Last time this key was used (received time, or to check connection) - - - - + Export/create a new node - + Trusted keys only - - Trust level - - - - + Search name @@ -13171,7 +13363,7 @@ Right-click and select 'make friend' to be able to connect. - + Profile details... @@ -13260,12 +13452,12 @@ Reported error: إزالة الكل - + This is a test. - + Newest on top @@ -13293,7 +13485,7 @@ Reported error: - + Channels قنوات @@ -13356,10 +13548,15 @@ Reported error: - + Friend Connected + + + Circles + + Links @@ -13406,8 +13603,18 @@ Reported error: - - Checked, if the identity and the text above occurences must be in the same case to trigger count. + + Count occurrences of my current identity + + + + + Count occurrences of any of the following texts (separate by newlines): + + + + + Checked, if the identity and the text above occurrences must be in the same case to trigger count. @@ -13451,12 +13658,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 أعلى لليسار @@ -13491,12 +13698,12 @@ Reported error: - + Feed - + Systray @@ -13505,16 +13712,6 @@ Reported error: Count all unread messages - - - Count occurences of any of the following texts (separate by newlines): - - - - - Count occurences of my current identity - - NotifyQt @@ -13544,7 +13741,7 @@ Reported error: - + Unregistered plugin/executable @@ -13554,7 +13751,7 @@ Reported error: - + Please check your system clock. @@ -13574,7 +13771,7 @@ Reported error: - + Test @@ -13595,7 +13792,7 @@ Reported error: - + 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). @@ -13611,33 +13808,44 @@ Reported error: OpModeStatus - + Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + 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 + + + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> + + + + + + Turtle routing disabled! + + PGPKeyDialog @@ -13741,12 +13949,7 @@ p, li { white-space: pre-wrap; } - - Below is the node's profile key in PGP ascii format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - - - - + These options apply to all nodes of the profile: @@ -13781,7 +13984,12 @@ p, li { white-space: pre-wrap; } - + + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. + + + + <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> @@ -13842,27 +14050,39 @@ p, li { white-space: pre-wrap; } - - + + RetroShare ريتروشير - - + + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + + +Warning: In your File-Transfer option, you select allow direct download to Yes. + + + + + +Warning: In your File-Transfer option, you select allow direct download to No. + + + + 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. @@ -13922,12 +14142,12 @@ p, li { white-space: pre-wrap; } - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -13953,7 +14173,7 @@ p, li { white-space: pre-wrap; } PeerItem - + Chat دردشة @@ -13964,7 +14184,7 @@ p, li { white-space: pre-wrap; } - + Expand توسيع @@ -14009,12 +14229,17 @@ p, li { white-space: pre-wrap; } الحالة: - + + Time offset: + + + + Write Message كتابة رسالة - + Friend صديق @@ -14033,13 +14258,18 @@ p, li { white-space: pre-wrap; } Friend of Friend صديق لصديق + + + Friend Time Offset + + Peer نظير - + @@ -14052,12 +14282,12 @@ p, li { white-space: pre-wrap; } نظير مجهول - + Hide إخفاء - + Send Message @@ -14523,31 +14753,31 @@ p, li { white-space: pre-wrap; } - Error: instance '%1'can't create a widget - - - - - Error: no plugin with name '%1' found + Error: instance '%1' can't create a widget - Error(uninstall): no plugin with name '%1' found + Error: failed to remove file %1 (uninstalling plugin '%2') + + + + + Error (uninstall): no plugin with name '%1' found - Error(installation): plugin file %1 doesn't exist + Error (installation): plugin file %1 doesn't exist - - Error: failed to remove file %1(uninstalling plugin '%2') + + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 @@ -14727,17 +14957,27 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - - Chat remotely closed. Please close this window. + + Remote status unknown. - - The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. + + Can't send message immediately, because there is no tunnel available. - + + The person you are talking to has deleted the secured chat tunnel. + + + + + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible + + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -14746,16 +14986,6 @@ malicious behavior of crafted plugins. Kill the tunnel? - - - Can't send message, because there is no tunnel. - - - - - Can't send message, because the chat partner deleted the secure tunnel. - - PostedCreatePostDialog @@ -14770,7 +15000,7 @@ malicious behavior of crafted plugins. - + RetroShare ريتروشير @@ -14795,12 +15025,12 @@ malicious behavior of crafted plugins. - + Submit a new Post - + Please add a Title @@ -14905,7 +15135,7 @@ malicious behavior of crafted plugins. - + Expand توسيع @@ -14920,12 +15150,12 @@ malicious behavior of crafted plugins. - + Loading جاري التحميل - + New Posted @@ -14949,14 +15179,14 @@ malicious behavior of crafted plugins. - - + + Comments تعليقات - - + + Comment تعليق @@ -15006,7 +15236,7 @@ malicious behavior of crafted plugins. إزالة عنصر - + Loading جاري التحميل @@ -15102,13 +15332,13 @@ malicious behavior of crafted plugins. - - Posted + + Open each topic in a new tab - - Open each topic in a new tab + + Links @@ -15167,7 +15397,20 @@ malicious behavior of crafted plugins. - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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 friend nodes to accept you automatically.</p></body></html> + + + + Name اسم @@ -15253,20 +15496,7 @@ and use the import button to load it - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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> - - - - + Full keys available in your keyring: @@ -15467,8 +15697,7 @@ p, li { white-space: pre-wrap; } QObject - - + Confirmation @@ -15478,34 +15707,14 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - - Add file - - - - - Add files - - - - - Do you want to process the link ? - - - - - Do you want to process %1 links ? - - - - + Warning: Retroshare is about to ask your system to open this file. @@ -15515,7 +15724,27 @@ and open the Make Friend Wizard. - + + Identity added to People + + + + + The identity was added to people. You can now chat with it, send messages to it, etc. + + + + + Identity cannot be added to People + + + + + The identity was not added to people. Some error occured. The link is probably corrupted. + + + + %1 of %2 RetroShare link processed. @@ -15625,7 +15854,7 @@ and open the Make Friend Wizard. - + Posted not found @@ -15640,12 +15869,32 @@ and open the Make Friend Wizard. - + Recipient not accepted - + + Click to browse/download this file collection + + + + + %1 (%2) + + + + + Identity link (name=%1, ID=%2) + + + + + %1 (%2 files, %3) + + + + Recipients not accepted @@ -15659,6 +15908,11 @@ and open the Make Friend Wizard. Unkown recipients + + + Chat room not found + + Malformed links @@ -15681,7 +15935,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Unable to make path @@ -15691,7 +15945,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Failed to process collection file @@ -15716,7 +15970,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. @@ -15727,12 +15981,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + RetroShare ريتروشير - + Initialization failed. Wrong or missing installation of PGP. @@ -15742,12 +15996,46 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + + Cannot start Tor Manager! + + + + + Tor cannot be started on your system: + + + + + + + Cannot start Tor + + + + + Sorry but Tor cannot be started on your system! + +The error reported is:" + + + + + Cannot start a hidden tor service! + + + + + It was not possible to start a hidden service. + + + + Multiple instances @@ -15767,22 +16055,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Distant peer has closed the chat - - Tunnel is pending... + + Tunnel is pending... Messages will be delivered as soon as possible - - Secured tunnel is working. You can talk! + + Secured tunnel is working. Messages are delivered immediately! - + The collection file %1 could not be opened. Reported error is: @@ -15790,22 +16078,22 @@ Reported error is: - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) @@ -15840,7 +16128,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -15850,7 +16138,7 @@ Reported error is: - + enabled @@ -15860,7 +16148,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -15875,8 +16163,8 @@ Reported error is: - - + + %1 seconds ago @@ -15937,19 +16225,19 @@ Reported error is: - + Security: no anonymous IDs - + Join chat room - - + + This cert is malformed. Error code: @@ -15959,7 +16247,7 @@ Security: no anonymous IDs - + Error @@ -16008,6 +16296,86 @@ Security: no anonymous IDs days + + + Processing + + + + + Choosing group + + + + + Creating receipt + + + + + Signing receipt + + + + + Serializing + + + + + Creating payload + + + + + Encrypting payload + + + + + Publishing + + + + + Waiting for receipt + + + + + Receipt received + + + + + Receipt signature failed + + + + + Encryption failed + + + + + Unknown + + + + + Click to pause the hashing process + + + + + [Hashing is paused] + + + + + Click to resume the hashing process + + QuickStartWizard @@ -16291,7 +16659,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 كيلوبايت @@ -16380,7 +16748,7 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options @@ -16413,110 +16781,25 @@ p, li { white-space: pre-wrap; } - - RelayPage - - - Enable Relay Connections - - - - - Use Relay Servers - - - - - Relay options - - - - - Number - - - - - Bandwidth per link - - - - - Total Bandwidth - - - - - Friends - أصدقاء - - - - - - kB/s - - - - - Friends of Friends - أصدقاء الأصدقاء - - - - General - عا - - - - Total: - - - - - Relay Server Setup - - - - - Add Server - - - - - Server DHT Key - - - - - Remove Server - - - - - Relay - - - - - <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... + + + + Download تحميل - - Recommend in a message to + + Recommend in a message to... - + Collection @@ -16524,7 +16807,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + [All friend nodes] @@ -16539,7 +16822,7 @@ p, li { white-space: pre-wrap; } - + This node hasn't sent any directory information yet. @@ -16606,15 +16889,48 @@ p, li { white-space: pre-wrap; } + + RsCollection + + + Save Collection File. + + + + + File already exists. + + + + + What do you want to do? + + + + + Overwrite + + + + + Merge + + + + + Cancel + + + RsCollectionDialog - + Collection - + File name : @@ -16624,8 +16940,18 @@ p, li { white-space: pre-wrap; } - - + + Destination: + + + + + Right click to change download directory + + + + + Cancel إلغي @@ -16635,7 +16961,7 @@ p, li { white-space: pre-wrap; } - + File ملف @@ -16662,57 +16988,48 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Selected files : + ... ... - + <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - - - - + Remove Duplicate - + Save احفظ - + Collection Editor - + File Path @@ -16722,19 +17039,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - - This is the root directory. - - - - - + Real Size: Waiting child... - - + Real File Count: Waiting child... @@ -16744,14 +17054,29 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - - + + Download files + + + + + Specify... + + + + + Choose directory + + + + + Real Size=%1 - - + + Real File Count=%1 @@ -16786,12 +17111,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Do you want to remove this file from the list? - + New Directory @@ -16801,17 +17126,17 @@ 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> - + 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> @@ -16819,7 +17144,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace RsCollectionFile - + Cannot open file %1 @@ -16830,69 +17155,151 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Open collection file - - + - + + Collection files - - - + + + Create collection file - + 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. - - - Save Collection File. - - - - - What do you want to do? - - - - - Overwrite - كتابة فوقية - - - - Merge - - - - - Cancel - إلغاء - - - - File already exists. - - - RsHtml + RsDownloadListModel - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? + + Name + i.e: file name + + + + + Size + i.e: file size + + + + + Completed + + + + + Speed + i.e: Download speed + + + + + Progress / Availability + i.e: % downloaded + + + + + Sources + i.e: Sources + + + + + Status + + + + + Speed / Queue position + + + + + Remaining + + + + + Download time + i.e: Estimated Time of Arrival / Time left + + + + + Hash + + + + + Last Time Seen + i.e: Last Time Receiced Data + + + + + Path + i.e: Where file is saved + + + + + Failed + + + + + Okay + + + + + Waiting + + + + + Downloading + + + + + Complete + + + + + Queued + + + + + Paused + + + + + Checking... + + + + + Unknown @@ -16907,7 +17314,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -16917,42 +17324,69 @@ Reducing image to %1x%2 pixels? - + + + filename + + + + Sets the name and location of RetroShare's logfile. - + + level + + + + Sets the verbosity of RetroShare's logging. - + + style + + + + Sets RetroShare's interface style. - + + stylesheet + + + + Sets RetroShare's interface stylesheets. - + + language + + + + Sets RetroShare's language. - - RetroShare Usage Information - - - - + Unable to open log file '%1': %2 - + + + Invalid operating mode specified: + + + + built-in @@ -16962,22 +17396,52 @@ Reducing image to %1x%2 pixels? - + Revision - + + opmode + + + + + Sets RetroShare's operating mode. + + + + + RsLinkURL + + + + + Open RsLink with protocol retroshare:// + + + + + Open RsFile with or without arg. + + + + + RetroShare GUI Usage Information + + + + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: @@ -17194,17 +17658,17 @@ Reducing image to %1x%2 pixels? - + Copy RetroShare Link نسخ رابط ريتروشير - + Send RetroShare Link - + Download Notice تحميل @@ -17241,18 +17705,18 @@ Reducing image to %1x%2 pixels? إزالة الكل - + Folder - + New RetroShare Link(s) - + Open Folder @@ -17530,12 +17994,7 @@ Reducing image to %1x%2 pixels? - - Nat - - - - + Automatic (UPnP) @@ -17571,12 +18030,17 @@ Reducing image to %1x%2 pixels? - + Local Address عنوان محلي - + + NAT + + + + External Address عنوان خارجي @@ -17607,17 +18071,12 @@ Reducing image to %1x%2 pixels? - + Known / Previous IPs: - Show Discovery information in statusbar - - - - 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 @@ -17630,13 +18089,16 @@ behind a firewall or a VPN. - + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -17646,17 +18108,23 @@ behind a firewall or a VPN. - + Onion Address - + Discovery On (recommended) + + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. + + + + Discovery Off @@ -17666,7 +18134,7 @@ behind a firewall or a VPN. - + I2P Address @@ -17691,7 +18159,7 @@ behind a firewall or a VPN. - + Proxy seems to work. @@ -17702,24 +18170,147 @@ behind a firewall or a VPN. - + + BOB is running and accessible + + + + + BOB is not accessible! Is it running? + + + + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) + +When changing options (e.g. port) use the buttons at the bottom to restart BOB. + + + + + + + client + + + + + server + + + + + unknown + + + + + + + BOB is processing a request + + + + + connectivity check + + + + + generating key + + + + + starting up + + + + + shuting down + + + + + BOB is processing a request: %1 + + + + + BOB is broken + + + + + + BOB encountered an error: + + + + + + BOB tunnel is running + + + + + BOB is working fine: tunnel established + + + + + BOB tunnel is not running + + + + + BOB is inactive: tunnel closed + + + + + request a new server key + + + + + load server key from base64 + + + + + stop BOB tunnel first to generate a new key + + + + + stop BOB tunnel first to load a key + + + + + stop BOB tunnel first to disable BOB + + + + 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> @@ -17729,7 +18320,7 @@ Also check your ports! مسح - + Download limit (KB/s) @@ -17749,7 +18340,139 @@ Also check your ports! - + + WARNING: +These values don't take into account the Relays. + + + + + 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] -> Next -> 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? + + + + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + + enableds advanced settings + + + + + advanced mode + + + + + I2P Basic Open Bridge + + + + + I2P Instance address + + + + + 127.0.0.1 + + + + + I2P proxy port + + + + + BOB accessible + + + + + Address + + + + + .b32.i2p + + + + + generate new + + + + + Tunnel length (in/out) + + + + + Tunnel quantity (in/out) + + + + + Tunnel variance (in/out) + + + + + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> + + + + + load key + + + + + Start + + + + + Restart + + + + + Stop + + + + + BOB status + + + + + Incoming + + + + + <html><head/><body><p>Setup your hidden address (and port if needed)</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> @@ -17759,17 +18482,125 @@ Also check your ports! - + + 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. + + + + + Relay + + + + + Enable Relay Connections + + + + + Use Relay Servers + + + + + Relay options + + + + + Number + + + + + Bandwidth per link + + + + + Total Bandwidth + + + + + Friends + + + + + Friends of Friends + + + + + General + + + + + Total: + + + + + Warning: This bandwidth adds up to the max bandwidth. + + + + + Relay Server Setup + + + + + Add Server + + + + + Server DHT Key + + + + + Remove Server + + + + + <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> + + + + Network شبكة - + IP Filters - + + Activate IP filtering + + + + IP blacklist @@ -17782,7 +18613,7 @@ Also check your ports! - + Status الحالة @@ -17847,59 +18678,39 @@ Also check your ports! - - 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 @@ -17934,26 +18745,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - - 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 @@ -17964,45 +18761,39 @@ If you have issues connecting over Tor check the Tor logs too. - + Remove إزالة - - - + + + 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> @@ -18033,16 +18824,26 @@ If you have issues connecting over Tor check the Tor logs too. + Outgoing Manual Tor/I2P + + + + + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> + + + + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled @@ -18108,7 +18909,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + من @@ -18295,7 +19096,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files ملفات @@ -18305,12 +19106,7 @@ Select the Friends with which you want to Share your Channel. - - Search files - - - - + Start Search @@ -18365,7 +19161,7 @@ Select the Friends with which you want to Share your Channel. تحميل - + Copy retroshare Links to Clipboard @@ -18380,38 +19176,23 @@ Select the Friends with which you want to Share your Channel. - - Send retroshare Links to Cloud - - - - - Add Links to Cloud - - - - + Some files have been omitted - - - Some files have been ommitted because their hash is not available yet. - - RetroShare Link - + Recommendation(s) - + Create Collection... @@ -18430,6 +19211,21 @@ Select the Friends with which you want to Share your Channel. Download from collection file... + + + Some files have been omitted because they have not been indexed yet. + + + + + Search string should be at least 3 characters long. + + + + + More than 3000 results. Add more/longer search words to select less. + + SoundManager @@ -18539,17 +19335,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - - Load profile - - - - + Load configuration - + Create interface @@ -18562,34 +19353,39 @@ Select the Friends with which you want to Share your Channel. ريتروشير - - Login + + + Password - - Profile - Location - - - - + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> + + + + Load Person Failure @@ -18599,23 +19395,19 @@ The current identities/locations will not be affected. - + + Wrong password + + + + Warning - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">Manage profiles and nodes...</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. @@ -18701,12 +19493,12 @@ This choice can be reverted in settings. - + DHT - + Bandwidth عرض الحزمة @@ -18720,6 +19512,11 @@ This choice can be reverted in settings. Global Router + + + Gxs Transport + + RTT Statistics @@ -18972,7 +19769,7 @@ p, li { white-space: pre-wrap; } SubFileItem - + %p Kb %p كيلوبت @@ -18993,7 +19790,7 @@ p, li { white-space: pre-wrap; } - + Play File @@ -19009,7 +19806,12 @@ p, li { white-space: pre-wrap; } - + + Remove this item + + + + ERROR @@ -19020,7 +19822,7 @@ p, li { white-space: pre-wrap; } - + REMOTE @@ -19071,7 +19873,7 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link نسخ رابط ريتروشير @@ -19097,7 +19899,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -19156,10 +19958,98 @@ p, li { white-space: pre-wrap; } + + TorControlDialog + + + Dialog + + + + + Setting up Tor... + + + + + Tor status: + + + + + Unknown + + + + + Not started + + + + + Hidden service address: + + + + + Tor bootstrap status: + + + + + + Not set + + + + + Onion address: + + + + + Check that Tor is accessible in your executable path + + + + + [Waiting for Tor...] + + + + + TorStatus + + + Tor + + + + + <p>This version of Retroshare uses Tor to connect to your friends.</p> + + + + + + Tor is currently offline + + + + + Tor is OK + + + + + No tor configuration + + + TransferPage - + Transfer options @@ -19169,22 +20059,22 @@ p, li { white-space: pre-wrap; } - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every @@ -19194,7 +20084,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> @@ -19204,7 +20094,47 @@ p, li { white-space: pre-wrap; } - + + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> + + + + + Ignore duplicate files/directories + + + + + Maximum depth (0=unlimited): + + + + + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> + + + + + Ignore files ending with: + + + + + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> + + + + + ignore files starting with: + + + + + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> + + + + Incoming Directory @@ -19221,6 +20151,11 @@ p, li { white-space: pre-wrap; } + Maximum uploads per friend (0 = no limit) + + + + Default chunk strategy: @@ -19235,7 +20170,12 @@ p, li { white-space: pre-wrap; } - + + Allow direct download: + + + + Streaming @@ -19269,6 +20209,26 @@ p, li { white-space: pre-wrap; } Enforced + + + <html><head/><body><p>How RS manage direct download setting.</p></body></html> + + + + + Yes + + + + + No + + + + + Per user + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -19283,12 +20243,12 @@ p, li { white-space: pre-wrap; } - + Max. tunnel req. forwarded per second: - + <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> @@ -19303,7 +20263,7 @@ p, li { white-space: pre-wrap; } - + Set Incoming Directory @@ -19350,111 +20310,75 @@ p, li { white-space: pre-wrap; } TransfersDialog - + Downloads - + Uploads - - + Name i.e: file name اسم - - + Size i.e: file size الحجم - - + Completed - - Speed - i.e: Download speed - - - - - Progress / Availability - i.e: % downloaded - - - - - Sources - i.e: Sources - - - - - - + Status الحالة - - + Speed / Queue position - - + Remaining المتبقي - - Download time - i.e: Estimated Time of Arrival / Time left - - - - - Peer - i.e: user name - نظير - - - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - - - + + Hash - + + + Search بحث @@ -19469,38 +20393,44 @@ p, li { white-space: pre-wrap; } - + Download from collection file... - + Pause - + + Peer + i.e: user name / tunnel id + + + + Resume - + Force Check - + Cancel إلغي - + Open Folder - + Open File @@ -19521,12 +20451,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link نسخ رابط ريتروشير - + Paste RetroShare Link لصق رابط ريتروشير @@ -19557,25 +20487,21 @@ p, li { white-space: pre-wrap; } - Slower - - Average - - + Faster - + Random @@ -19600,12 +20526,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... @@ -19620,97 +20546,26 @@ p, li { white-space: pre-wrap; } - + Set destination directory - + Choose directory - - - - Failed - - - - - - - Okay - - - - - - Waiting - - - - - Downloading - - - - - - - - Complete - - - - - Queued - - - - - Paused - - - - - Checking... - - - - - Unknown - مجهول - - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - - - - - Transferring - - - - - Uploading - - - - + Anonymous end-to-end encrypted tunnel 0x + + + + Tunnel + + Are you sure that you want to cancel and delete these files? @@ -19722,7 +20577,7 @@ Try to be patient! ريتروشير - + @@ -19770,23 +20625,14 @@ Try to be patient! - - Last Time Seen - i.e: Last Time Receiced Data - - - - - UserID - - - - + + Expand all - + + Collapse all @@ -19876,23 +20722,17 @@ Try to be patient! - + Columns أعمدة - + File Transfers - - Path - i.e: Where file is saved - المسار - - - + Path المسار @@ -19902,7 +20742,7 @@ Try to be patient! - + Could not delete preview file @@ -19912,7 +20752,7 @@ Try to be patient! - + Create Collection... @@ -19927,22 +20767,22 @@ Try to be patient! - + Collection - + + %1 tunnels + + + + Anonymous tunnel 0x - - version: - - - - + Files @@ -19950,35 +20790,42 @@ Try to be patient! TreeStyle_RDM - - + + My files - - + + FILE - + + Files ملفات - + + File ملف - - + + Empty + + + + + DIR - + Friends Directories [updating...] @@ -19997,6 +20844,11 @@ Try to be patient! My Directories مجلداتي + + + # Files + + Size @@ -20023,7 +20875,17 @@ Try to be patient! - + + Column %1 + + + + + Row %1 + + + + What's new @@ -20031,20 +20893,20 @@ Try to be patient! TurtleRouterDialog - - + + Search requests - - + + Tunnel requests - - + + @@ -20052,7 +20914,7 @@ Try to be patient! - + Tunnel id @@ -20067,7 +20929,11 @@ Try to be patient! - + + Request id: %1 %3 secs ago from %2 %4 (%5 hits) + + + Request id: %1 from [%2] %3 secs ago @@ -20312,26 +21178,26 @@ Try to be patient! - Port : + Port: - allow access from all IP adresses (Default: localhost only) + Allow access from all IP addresses (Default: localhost only) - apply setting and start browser + Apply setting and start browser - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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> @@ -20346,7 +21212,7 @@ Try to be patient! - + failed to start Webinterface @@ -20977,4 +21843,138 @@ Try to be patient! - + + pgpid_item_model + + + Do you accept connections signed by this profile? + + + + + Name of the profile + + + + + This column indicates trust level and whether you signed the profile PGP key + + + + + Did that peer sign your own profile PGP key + + + + + PGP Key Id of that profile + + + + + Last time this key was used (received time, or to check connection) + + + + + Connections + + + + + Profile + + + + + Trust level + + + + + Has signed your key? + + + + + Id + + + + + Last used + + + + + Personal signature + + + + + Marginally trusted peer + + + + + Fully trusted peer + + + + + Untrusted peer + + + + + Yes + + + + + No + + + + + Last hour + + + + + Today + + + + + Never + + + + + %1 days ago + + + + + Accepted + + + + + - + + + + + PGP key signed by you + + + + + has authenticated you. +Right-click and select 'make friend' to be able to connect. + + + + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_bg.qm b/retroshare-gui/src/lang/retroshare_bg.qm index 633d33740..5a2e961c2 100644 Binary files a/retroshare-gui/src/lang/retroshare_bg.qm and b/retroshare-gui/src/lang/retroshare_bg.qm differ diff --git a/retroshare-gui/src/lang/retroshare_bg.ts b/retroshare-gui/src/lang/retroshare_bg.ts index 40fb8a55b..ab9f8a9bb 100644 --- a/retroshare-gui/src/lang/retroshare_bg.ts +++ b/retroshare-gui/src/lang/retroshare_bg.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + @@ -28,7 +26,7 @@ About - За + @@ -36,52 +34,52 @@ Form - Формуляр + About - За + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - За RetroShare + Have fun ;-) - + Only Hidden Node - + @@ -116,9 +114,9 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - + @@ -126,27 +124,27 @@ RetroShare: Advanced Search - + Search Criteria - + Add a further search criterion. - + Reset the search criteria. - + Cancels the search. - + @@ -156,12 +154,12 @@ Perform the advanced search. - + Search - + @@ -170,87 +168,87 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + @@ -260,12 +258,12 @@ Share Options - + Policy: - + @@ -275,101 +273,101 @@ Comments: - + Identity: - + Public - + Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -378,47 +376,47 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + @@ -428,51 +426,51 @@ p, li { white-space: pre-wrap; } Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -487,25 +485,25 @@ p, li { white-space: pre-wrap; } TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -513,187 +511,187 @@ p, li { white-space: pre-wrap; } Language - + Choose the language used in RetroShare - + (Needs restart) - + Style - + Choose RetroShare's interface style - + Style Sheet - + Appearance - + Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -708,37 +706,37 @@ 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -746,17 +744,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + [ERROR]) - + @@ -764,17 +762,17 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + @@ -784,12 +782,12 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - + Load Avatar - + @@ -797,7 +795,7 @@ p, li { white-space: pre-wrap; } Click to change your avatar - + @@ -805,7 +803,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -813,7 +811,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -821,7 +819,7 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - + @@ -837,37 +835,37 @@ p, li { white-space: pre-wrap; } Receive Rate - + Send Rate - + Always on Top - + Style - + Changes the transparency of the Bandwidth Graph - + 100 - + % Opaque - + @@ -882,12 +880,12 @@ p, li { white-space: pre-wrap; } Since: - + Hide Settings - + @@ -896,33 +894,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -935,67 +933,67 @@ p, li { white-space: pre-wrap; } ID - + In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + @@ -1008,57 +1006,57 @@ p, li { white-space: pre-wrap; } Form - Формуляр + Friend: - + Type: - + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1066,27 +1064,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1094,180 +1092,180 @@ p, li { white-space: pre-wrap; } Name - Име + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1275,7 +1273,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1283,38 +1281,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1328,222 +1326,222 @@ p, li { white-space: pre-wrap; } Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private - + Public - + Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + Yes - + No - + Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - + @@ -1553,36 +1551,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - Показване + column - + Chats - + @@ -1595,28 +1593,28 @@ Double click a chat room to enter and chat. Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + @@ -1626,7 +1624,7 @@ Double click a chat room to enter and chat. Quick Message - + @@ -1635,279 +1633,279 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + Style - + Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1917,72 +1915,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1990,32 +1988,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2023,7 +2021,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2031,7 +2029,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2039,325 +2037,325 @@ Double click a chat room to enter and chat. Close - + Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2365,12 +2363,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2378,12 +2376,12 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + @@ -2394,23 +2392,23 @@ Double click on it to add his name on text writer. IDs - + Personal Circles - + Public Circles - + Peers - + @@ -2420,89 +2418,89 @@ Double click on it to add his name on text writer. ID - + Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2510,44 +2508,44 @@ Double click on it to add his name on text writer. Details - + Local Address - + External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - + Include signatures - + @@ -2561,72 +2559,72 @@ Double click on it to add his name on text writer. Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - Име: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + @@ -2637,47 +2635,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2685,229 +2683,229 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2919,23 +2917,23 @@ Double click on it to add his name on text writer. 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: - + @@ -2947,254 +2945,254 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3204,63 +3202,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3268,129 +3266,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3398,69 +3396,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3468,241 +3466,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3711,201 +3709,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3913,42 +3911,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3959,7 +3957,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -3969,53 +3967,53 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + Public - + IDs - + Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + ID - + @@ -4025,47 +4023,47 @@ p, li { white-space: pre-wrap; } Name: - Име: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4077,17 +4075,17 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4097,86 +4095,86 @@ p, li { white-space: pre-wrap; } Remove - + Search - + All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4185,38 +4183,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4225,100 +4223,100 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + @@ -4329,43 +4327,43 @@ p, li { white-space: pre-wrap; } File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4374,7 +4372,7 @@ p, li { white-space: pre-wrap; } Post Forum Message - + @@ -4384,52 +4382,52 @@ p, li { white-space: pre-wrap; } Subject - + Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + @@ -4441,64 +4439,64 @@ p, li { white-space: pre-wrap; } Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4506,87 +4504,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4594,7 +4592,7 @@ Do you want to discard this message? Public Information - + @@ -4604,57 +4602,57 @@ Do you want to discard this message? Location: - + Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + @@ -4664,67 +4662,67 @@ Do you want to discard this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4732,7 +4730,7 @@ Do you want to discard this message? users - + @@ -4740,38 +4738,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4779,42 +4777,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4822,42 +4820,42 @@ Do you want to discard this message? Details - + General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + @@ -4867,17 +4865,17 @@ Do you want to discard this message? Rating - + Comments - + File Name - + @@ -4885,32 +4883,32 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + Peer Address - + @@ -4920,83 +4918,83 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + @@ -5016,202 +5014,202 @@ Do you want to discard this message? Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5221,27 +5219,27 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + @@ -5251,13 +5249,13 @@ Do you want to discard this message? RELAY END - + Yourself - + @@ -5268,17 +5266,17 @@ Do you want to discard this message? unlimited - + Own Relay - + RELAY PROXY - + @@ -5287,27 +5285,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5315,113 +5313,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5429,12 +5427,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5442,7 +5440,7 @@ Do you want to discard this message? Start file - + @@ -5452,36 +5450,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5489,12 +5487,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5502,52 +5500,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5555,47 +5553,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5603,52 +5601,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5656,73 +5654,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5730,52 +5728,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5793,41 +5791,37 @@ Do you want to discard this message? Expand new messages - - - - Forum - Форум + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5835,298 +5829,298 @@ Do you want to discard this message? Last Contact - + ID - + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6134,42 +6128,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6177,17 +6171,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6195,17 +6189,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6215,17 +6209,17 @@ at least one peer was not added to a group Search Friends - + Mark all - + Mark none - + @@ -6233,122 +6227,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6356,7 +6350,7 @@ at least one peer was not added to a group Create new Profile - + @@ -6366,160 +6360,160 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Настройки + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6528,131 +6522,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6660,32 +6654,32 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + @@ -6695,103 +6689,103 @@ and use the import button to load it Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6800,44 +6794,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6849,31 +6843,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> @@ -6886,118 +6880,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7005,82 +6999,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - Неизвестен + @@ -7088,22 +7082,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7111,7 +7105,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7119,7 +7113,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7127,27 +7121,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7155,72 +7149,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7233,7 +7227,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7241,47 +7235,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7299,78 +7293,78 @@ p, li { white-space: pre-wrap; } Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - Никога + Display - + Subscribe to download and read messages - + @@ -7378,17 +7372,17 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + @@ -7403,12 +7397,12 @@ p, li { white-space: pre-wrap; } Extension - + Hash - + @@ -7418,57 +7412,57 @@ p, li { white-space: pre-wrap; } Size - + Popularity - + contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7477,68 +7471,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7551,47 +7545,47 @@ p, li { white-space: pre-wrap; } Download - + TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7604,12 +7598,12 @@ p, li { white-space: pre-wrap; } Filename - + Size - + @@ -7619,7 +7613,7 @@ p, li { white-space: pre-wrap; } Published - + @@ -7632,37 +7626,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7670,7 +7664,7 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + @@ -7686,17 +7680,17 @@ p, li { white-space: pre-wrap; } Channel Description - + Loading - + New Channel - + @@ -7709,49 +7703,49 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + Download - + Play - + Comments - + Edit - Редактиране + Copy RetroShare Link - + Unsubscribe From Channel - + @@ -7772,17 +7766,17 @@ p, li { white-space: pre-wrap; } Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + @@ -7797,33 +7791,33 @@ p, li { white-space: pre-wrap; } 0 - + Comment - + I like this - + I dislike this - + Loading - + Comments - + @@ -7833,12 +7827,12 @@ p, li { white-space: pre-wrap; } Open File - + Play Media - + @@ -7846,23 +7840,23 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + @@ -7877,98 +7871,98 @@ p, li { white-space: pre-wrap; } Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - Никога + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - непознат + Distribution: - + @@ -7978,12 +7972,12 @@ p, li { white-space: pre-wrap; } Files - + Subscribers - + @@ -7993,7 +7987,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8001,7 +7995,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8009,48 +8003,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - Премахни елемент + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8058,7 +8052,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8071,7 +8065,7 @@ p, li { white-space: pre-wrap; } Hot - + @@ -8081,22 +8075,22 @@ p, li { white-space: pre-wrap; } Top - + Voter ID: - + Refresh - + Comment - + @@ -8111,22 +8105,22 @@ p, li { white-space: pre-wrap; } Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8134,27 +8128,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8162,32 +8156,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8195,7 +8189,7 @@ before you can comment Create New Forum - + @@ -8205,27 +8199,27 @@ before you can comment Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8233,7 +8227,7 @@ before you can comment Subscribe to Forum - + @@ -8249,17 +8243,17 @@ before you can comment Forum Description - + Loading - + New Forum - + @@ -8273,12 +8267,12 @@ before you can comment Subject: - + Unsubscribe To Forum - + @@ -8299,17 +8293,17 @@ before you can comment In Reply to: - + Loading - + Forum Feed - + @@ -8327,7 +8321,7 @@ before you can comment Start new Thread for Selected Forum - + @@ -8337,22 +8331,22 @@ before you can comment Last Post - + New Thread - + Threaded View - + Flat View - + @@ -8376,38 +8370,38 @@ before you can comment Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + @@ -8427,17 +8421,17 @@ before you can comment Content - + Search Content - + <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> - + @@ -8449,22 +8443,22 @@ before you can comment Reply - + Start New Thread - + Expand all - + Collapse all - + @@ -8476,7 +8470,7 @@ before you can comment with children - + @@ -8487,7 +8481,7 @@ before you can comment Copy RetroShare Link - + @@ -8502,64 +8496,64 @@ before you can comment [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + @@ -8569,27 +8563,27 @@ before you can comment [ ... Missing 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> - + @@ -8607,7 +8601,7 @@ before you can comment No Forum Selected! - + @@ -8615,189 +8609,189 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - Редактиране + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - Никога + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + Subject - + On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8805,7 +8799,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8813,38 +8807,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8852,17 +8846,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8876,38 +8870,38 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8915,12 +8909,12 @@ prevents the message to be forwarded to your friends. Public - + Publish Signatures - + @@ -8930,244 +8924,244 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - Никога + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + ID - + Last Post - + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + Popularity - + Posts - + @@ -9177,7 +9171,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9185,32 +9179,32 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + Unsubscribe - + Subscribe - + @@ -9220,74 +9214,74 @@ prevents the message to be forwarded to your friends. Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + @@ -9297,12 +9291,12 @@ prevents the message to be forwarded to your friends. Mark all as unread - + AUTHD - + @@ -9310,12 +9304,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9323,60 +9317,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9384,7 +9378,7 @@ prevents the message to be forwarded to your friends. Loading - + @@ -9397,107 +9391,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - + Destination - Цел + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - + Details - + Unknown Peer - + Pending data items - + Unknown - Неизвестен + Yes - + No - + @@ -9505,42 +9499,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9549,17 +9543,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9568,22 +9562,22 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + @@ -9593,141 +9587,141 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + Search - + Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + Close - + Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9742,59 +9736,59 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9803,12 +9797,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9816,32 +9810,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9849,114 +9843,114 @@ p, li { white-space: pre-wrap; } Form - Формуляр + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9965,241 +9959,241 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + Type: - + Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10208,441 +10202,441 @@ p, li { white-space: pre-wrap; } All - + Reputation - + Search - + Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - непознат + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10650,294 +10644,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - + Unknown - Неизвестен + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10945,98 +10939,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11044,43 +11038,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11093,38 +11087,38 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11139,7 +11133,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11148,7 +11142,7 @@ These identities will soon be not supported anymore. RM - + @@ -11159,32 +11153,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11197,12 +11191,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11214,25 +11208,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11241,7 +11235,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11257,7 +11251,7 @@ These identities will soon be not supported anymore. Mark all - + @@ -11267,12 +11261,12 @@ These identities will soon be not supported anymore. Clear history - + Send - + @@ -11281,17 +11275,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11300,47 +11294,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11348,17 +11342,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11369,7 +11363,7 @@ These identities will soon be not supported anymore. Messenger - + @@ -11379,34 +11373,34 @@ These identities will soon be not supported anymore. SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11415,12 +11409,12 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + @@ -11430,27 +11424,27 @@ These identities will soon be not supported anymore. Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + @@ -11460,17 +11454,17 @@ These identities will soon be not supported anymore. Minimize - + Maximize - + &Quit - + @@ -11480,42 +11474,42 @@ These identities will soon be not supported anymore. %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + @@ -11530,57 +11524,57 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11589,169 +11583,169 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + @@ -11761,178 +11755,178 @@ These identities will soon be not supported anymore. Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + Subject - + On %1, %2 wrote: - + Re: - + Fwd: - + @@ -11944,18 +11938,18 @@ Do you want to save message to draft box? Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + @@ -11965,179 +11959,179 @@ Do you want to save message to draft box? &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Close - + @@ -12147,73 +12141,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12221,27 +12215,27 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + @@ -12251,17 +12245,17 @@ Do you want to save message ? Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12286,32 +12280,32 @@ Do you want to save message ? A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12319,7 +12313,7 @@ Do you want to save message ? Sub: - + @@ -12327,7 +12321,7 @@ Do you want to save message ? Message - + @@ -12335,17 +12329,17 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + @@ -12360,113 +12354,113 @@ Do you want to save message ? Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + Download - + Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12474,47 +12468,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + @@ -12524,81 +12518,81 @@ Do you want to save message ? Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12607,47 +12601,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + @@ -12657,17 +12651,17 @@ Do you want to save message ? Print selected message - + Print - + Display - + @@ -12676,7 +12670,7 @@ Do you want to save message ? Tags - + @@ -12684,7 +12678,7 @@ Do you want to save message ? Inbox - + @@ -12692,18 +12686,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12711,93 +12705,93 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + Subject - + From - + @@ -12809,58 +12803,58 @@ Do you want to save message ? Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + @@ -12870,47 +12864,47 @@ Do you want to save message ? Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + @@ -12925,7 +12919,7 @@ Do you want to save message ? Add Star - + @@ -12935,59 +12929,59 @@ Do you want to save message ? Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -12996,37 +12990,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13034,17 +13028,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13052,27 +13046,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13080,27 +13074,27 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + Play Media - + @@ -13116,32 +13110,32 @@ Do you want to save message ? from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + @@ -13151,12 +13145,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13164,52 +13158,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13217,12 +13211,12 @@ Do you want to save message ? Filter: - + Search Network - + @@ -13232,92 +13226,92 @@ Do you want to save message ? Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13325,7 +13319,7 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + @@ -13335,53 +13329,49 @@ For security, your keyring was previously backed-up to file Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - - Never - Никога + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13389,7 +13379,7 @@ Reported error: Network - + @@ -13397,22 +13387,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13420,7 +13410,7 @@ Reported error: New Tag - + @@ -13430,12 +13420,12 @@ Reported error: Choose color - + OK - + @@ -13448,7 +13438,7 @@ Reported error: Log entries - + @@ -13458,32 +13448,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13491,27 +13481,27 @@ Reported error: News Feed - + Channels - + Forums - + Blogs - + Security - + @@ -13522,189 +13512,189 @@ Reported error: Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Чувствителност към регистъра + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + @@ -13714,12 +13704,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13727,57 +13717,57 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + @@ -13787,23 +13777,23 @@ Reported error: This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13811,7 +13801,7 @@ Reported error: Friend Online - + @@ -13819,41 +13809,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13861,42 +13851,42 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + @@ -13906,157 +13896,157 @@ Reported error: No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - Настройки + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14070,100 +14060,100 @@ p, li { white-space: pre-wrap; } Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + Maybe password is wrong - + You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14184,12 +14174,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + @@ -14210,72 +14200,72 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14288,7 +14278,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + @@ -14298,7 +14288,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Send Message - + @@ -14306,17 +14296,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14326,53 +14316,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14380,68 +14370,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14457,47 +14447,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + Comment - + Summary - + Caption - + Where: - + Photo Title: - + When - + @@ -14512,7 +14502,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Write a comment... - + @@ -14525,34 +14515,34 @@ Warning: In your File-Transfer option, you select allow direct download to No. TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14565,53 +14555,53 @@ p, li { white-space: pre-wrap; } Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14619,53 +14609,53 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + Close - + Start - + Start Slide Show - + Stop Slide Show - + @@ -14681,26 +14671,26 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14710,22 +14700,22 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + @@ -14735,22 +14725,22 @@ p, li { white-space: pre-wrap; } File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14758,37 +14748,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14796,22 +14786,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14819,27 +14809,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14848,37 +14838,37 @@ 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. - + Unknown status. - + @@ -14886,18 +14876,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14905,7 +14895,7 @@ malicious behavior of crafted plugins. Popularity - + @@ -14913,17 +14903,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14931,36 +14921,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14968,32 +14958,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15001,12 +14991,12 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + @@ -15016,32 +15006,32 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + @@ -15051,7 +15041,7 @@ malicious behavior of crafted plugins. Link - + @@ -15059,42 +15049,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15102,37 +15092,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15140,7 +15130,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15156,17 +15146,17 @@ malicious behavior of crafted plugins. Posted Description - + Loading - + New Posted - + @@ -15179,40 +15169,40 @@ malicious behavior of crafted plugins. 0 - + Site - + Comments - + Comment - + Vote up - + Vote down - + \/ - + @@ -15227,17 +15217,17 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + Toggle Message Read Status - + @@ -15247,12 +15237,12 @@ malicious behavior of crafted plugins. Loading - + By - + @@ -15265,7 +15255,7 @@ malicious behavior of crafted plugins. Hot - + @@ -15275,37 +15265,37 @@ malicious behavior of crafted plugins. Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + @@ -15320,7 +15310,7 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + @@ -15330,7 +15320,7 @@ malicious behavior of crafted plugins. 1-10 - + @@ -15338,17 +15328,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15356,7 +15346,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15364,37 +15354,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15403,20 +15393,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15426,29 +15416,29 @@ p, li { white-space: pre-wrap; } Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15457,67 +15447,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15526,22 +15516,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15551,57 +15541,57 @@ and use the import button to load it Location: - + Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + @@ -15612,12 +15602,12 @@ and use the import button to load it Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15625,51 +15615,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15679,7 +15669,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15687,7 +15677,7 @@ and use the import button to load it From - + @@ -15708,119 +15698,119 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + @@ -15830,163 +15820,163 @@ and open the Make Friend Wizard. Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + @@ -15997,86 +15987,86 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16084,306 +16074,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - Неизвестен + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16391,19 +16381,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16412,7 +16402,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> - + @@ -16420,7 +16410,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16429,73 +16419,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16503,35 +16493,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16546,110 +16536,110 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16657,12 +16647,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16670,17 +16660,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16693,12 +16683,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16706,52 +16696,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16759,17 +16749,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16777,17 +16767,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16795,22 +16785,22 @@ p, li { white-space: pre-wrap; } Download... - + Download - + Recommend in a message to... - + Collection - + @@ -16818,22 +16808,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16841,22 +16831,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -16869,33 +16859,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16903,32 +16893,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - Презаписване + Merge - + Cancel - Отмяна + @@ -16936,27 +16926,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -16967,39 +16957,39 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17010,22 +17000,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17035,69 +17025,69 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17107,47 +17097,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17156,17 +17146,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17174,29 +17164,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Overwrite - Презаписване - - - Cancel - Отмяна + @@ -17205,119 +17187,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - Име + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - Статус + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - Пътека + Failed - + Okay - + Waiting - + Downloading - Изтегляне + Complete - + Queued - + Paused - + Checking... - + Unknown - Неизвестен + @@ -17325,7 +17307,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17333,134 +17315,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17469,7 +17451,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17477,7 +17459,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17485,98 +17467,98 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + Search - + Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + @@ -17586,130 +17568,130 @@ If you believe it is correct, remove the corresponding line from the file and re Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice - + Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + @@ -17719,7 +17701,7 @@ If you believe it is correct, remove the corresponding line from the file and re Remove All - + @@ -17730,37 +17712,37 @@ If you believe it is correct, remove the corresponding line from the file and re New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17768,7 +17750,7 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + @@ -17784,29 +17766,29 @@ If you believe it is correct, remove the corresponding line from the file and re IP address: - + Peer ID: - + Location: - + Peer Name: - + Unknown Peer - + @@ -17816,33 +17798,33 @@ If you believe it is correct, remove the corresponding line from the file and re but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17850,32 +17832,32 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + @@ -17896,62 +17878,62 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17960,7 +17942,7 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + @@ -17970,32 +17952,32 @@ If you believe it is correct, remove the corresponding line from the file and re Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18003,107 +17985,107 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + Local Address - + NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18112,89 +18094,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18203,295 +18185,295 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - непознат + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18505,127 +18487,127 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18639,142 +18621,142 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + Comment - + IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -18787,82 +18769,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18870,27 +18852,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18898,7 +18880,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -18908,17 +18890,17 @@ If you have issues connecting over Tor check the Tor logs too. Permissions - + 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> - + @@ -18926,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Формуляр + @@ -18934,7 +18916,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18942,23 +18924,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18966,47 +18948,47 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - Отмяна + Add a Share Directory - + @@ -19016,98 +18998,98 @@ Select the Friends with which you want to Share your Channel. Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19115,17 +19097,17 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + @@ -19135,113 +19117,113 @@ Select the Friends with which you want to Share your Channel. Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + Download - + Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19249,48 +19231,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - + Download complete - + Lobby - + @@ -19298,7 +19280,7 @@ Select the Friends with which you want to Share your Channel. Event: - + @@ -19308,32 +19290,32 @@ Select the Friends with which you want to Share your Channel. Browse - + Event - + Filename - + Open File - + Sound - + Default - По подразбиране + @@ -19341,12 +19323,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19354,12 +19336,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19373,55 +19355,55 @@ Select the Friends with which you want to Share your Channel. Password - Парола + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19430,7 +19412,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19439,7 +19421,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19448,7 +19430,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19456,17 +19438,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19476,7 +19458,7 @@ This choice can be reverted in settings. Messenger - + @@ -19486,58 +19468,58 @@ This choice can be reverted in settings. SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19546,165 +19528,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19712,30 +19694,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19744,28 +19726,28 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + Style - + @@ -19775,12 +19757,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19788,96 +19770,96 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + Download File - + Download - + Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + DOWNLOAD - + LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19887,12 +19869,12 @@ p, li { white-space: pre-wrap; } Open File - + Copy RetroShare Link - + @@ -19900,17 +19882,17 @@ p, li { white-space: pre-wrap; } Subscribed - + Unsubscribe - + Subscribe - + @@ -19918,7 +19900,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19926,27 +19908,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19954,12 +19936,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19967,12 +19949,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19980,58 +19962,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - Неизвестен + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20039,28 +20021,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20068,231 +20050,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20300,27 +20282,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20329,13 +20311,13 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + @@ -20347,12 +20329,12 @@ p, li { white-space: pre-wrap; } Size i.e: file size - + Completed - + @@ -20362,78 +20344,78 @@ p, li { white-space: pre-wrap; } Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + Search - + Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20444,157 +20426,149 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Downloading - Изтегляне - - - Unknown - Неизвестен + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + @@ -20607,159 +20581,154 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - - - - Path - i.e: Where file is saved - Пътека + @@ -20769,52 +20738,52 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20823,101 +20792,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20926,13 +20895,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20941,32 +20910,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20974,12 +20943,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20987,42 +20956,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21030,47 +20999,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21082,7 +21051,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21090,22 +21059,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21113,22 +21082,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21136,7 +21105,7 @@ p, li { white-space: pre-wrap; } OK - + @@ -21146,12 +21115,12 @@ p, li { white-space: pre-wrap; } Yes - + No - + @@ -21161,12 +21130,12 @@ p, li { white-space: pre-wrap; } Retry - + Show Log - + @@ -21181,12 +21150,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21199,57 +21168,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21257,48 +21226,48 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + @@ -21308,72 +21277,72 @@ p, li { white-space: pre-wrap; } Share Options - + Public - + All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21382,42 +21351,42 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + @@ -21427,62 +21396,62 @@ p, li { white-space: pre-wrap; } New Page - + Refresh - + Search - + My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21490,74 +21459,74 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + @@ -21578,39 +21547,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21618,37 +21587,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21656,28 +21625,28 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + @@ -21687,67 +21656,67 @@ p, li { white-space: pre-wrap; } from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21756,12 +21725,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21776,32 +21745,32 @@ p, li { white-space: pre-wrap; } B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + @@ -21812,65 +21781,65 @@ p, li { white-space: pre-wrap; } < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21878,133 +21847,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - + No - + Last hour - + Today - + Never - Никога + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_ca_ES.qm b/retroshare-gui/src/lang/retroshare_ca_ES.qm index e9d8b37fb..650bd4895 100644 Binary files a/retroshare-gui/src/lang/retroshare_ca_ES.qm and b/retroshare-gui/src/lang/retroshare_ca_ES.qm differ diff --git a/retroshare-gui/src/lang/retroshare_ca_ES.ts b/retroshare-gui/src/lang/retroshare_ca_ES.ts index 407e4d83b..b51d86ffc 100644 --- a/retroshare-gui/src/lang/retroshare_ca_ES.ts +++ b/retroshare-gui/src/lang/retroshare_ca_ES.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + Retroshare versió @@ -28,7 +26,7 @@ About - Sobre + Sobre @@ -36,52 +34,52 @@ Form - Formulari + Formulari About - Sobre + Sobre Copy Info - + Informació de la copia close - + tancar Max score: %1 - + Puntuació màxima: %1 Score: %1 - + Puntuació: %1 Level: %1 - + Nivell: %1 About RetroShare - Sobre RetroShare + Sobre RetroShare Have fun ;-) - + Passa-t'ho bé ;-) Only Hidden Node - + Només node ocult @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Ho sentim, no es pot determinar l'ordre de sistema per defecte per a aquest fitxer\n @@ -332,7 +330,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -454,7 +452,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -502,7 +500,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -515,7 +513,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -539,7 +537,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + (Hauràs de reiniciar) @@ -624,47 +622,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Mostrar control de missatges emergents Show Sound Status - + Mostrar l'estat del so Show Network Rate Status - + Mostrar l'indicador d'ús de xarxa Show Discovery Status - + Mostrar l'indicador d'informació de descobriment Show DHT Status - + Mostrar l'indicador d'estat del DHT Show Hashing Status - + Mostrar el progrés del càlcul de hash Show NAT Status - + Mostrar l'indicador de l'estat del NAT Show Peer Status - + Mostrar l'indicador de contactes/amics Show Status ComboBox - + Mostrar el selector d'estat @@ -679,7 +677,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + Mostrar el selector de mode d'operació @@ -694,17 +692,17 @@ p, li { white-space: pre-wrap; } Main page items: - + Elements de la pàgina principal: Buttons - + Butons Item list - + Llista d'elements @@ -934,12 +932,12 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Average - Mitjana + Mitjana Total - + Total @@ -1060,17 +1058,17 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Legend: - + Llegenda: Current - + Actual Total - + Total @@ -1108,14 +1106,10 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem ChatLobbyDialog - - Participants - Participants - Name - Nom + Nom @@ -1167,10 +1161,6 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Topic: %1 Tema: %1 - - Lobby management - Control de sales de xat - %1 changed his name to: %2 @@ -1199,38 +1189,38 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Give neutral opinion - + Opinió neutre Give positive opinion - + Opinió positiva Show author in people tab - + Mostrar autor a la pestanya de gent Search - + Cercar Leave this chat room (Unsubscribe) - + Abandonar la sala de xat (Des-subscriure's) Welcome to chat room %1 - + Benvinguts a la sala de xat %1 Room chat - + Sala de xat @@ -1270,29 +1260,29 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem %1 has left the room. - + %1 ha deixat la sala. Chat room management - + Control de la sala de xat %1 joined the room. - + %1 ha entrat a la sala. Unsubscribe from chat room - + Des-subscriure's de la sala de xat Do you want to unsubscribe to this chat room? - + Voleu des-subscriure-us d'aquesta sala de xat? @@ -1308,7 +1298,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Chats - + Xats @@ -1363,106 +1353,108 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Private Subscribed chat rooms - + Sales de xat privades subscrites Public Subscribed chat rooms - + Sales de xat públiques subscrites Private chat rooms - + Sales de xat privades Public chat rooms - + Sales de xat públiques <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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;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 chat room - + Crear sala de xat Leave this room - + Abandonar sala Create a non anonymous identity and enter this room - + Crear una identitat no anònima i entrar a aquesta sala Create an identity and enter this chat room - + Crear una identitat i entrar a aquesta sala de xat Enter this chat room - + Entrar a aquesta sala de xat Enter this chat room as... - + Entrar a aquesta sala de xat com... Copy RetroShare Link - Copia l'enllaç RetroShare + Copia l'enllaç RetroShare You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + No pots accedir a aquesta sala de xat amb la teva identitat per defecte perquè la identitat és anònima i la sala de xat ho prohibeix. You're not subscribed to this chat room; Double click-it to enter and chat. - + No estàs subscrit a aquesta sala de xat; Fes doble clic per entrar-hi i xatejar. You will need to create a non anonymous identity in order to join this chat room. - + 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 rooms. - + Necessitaràs crear una identitat abans de poder entrar a sales de xat. No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + Cap sala seleccionada +Selecciona entre les sales de la esquerra per mostrar-ne els detalls. +Fes doble clic a les sales per entrar-hi i xatejar. %1 invites you to chat room named %2 - + %1 t'invita a una sala de xat anomenada %2 Choose a non anonymous identity for this chat room: - + Escull una identitat no anònima per aquesta sala: Choose an identity for this chat room: - + Escull una identitat per aquesta sala: @@ -1538,17 +1530,17 @@ Double click a chat room to enter and chat. Chat rooms - + Sales de xat Chat room Name: - + Nom de la sala de xat: Chat room Id: - + Id de la sala de xat: @@ -1607,7 +1599,7 @@ Double click a chat room to enter and chat. Chats - + Xats @@ -1745,7 +1737,7 @@ Double click a chat room to enter and chat. Load embedded images - Carrega imatges incrustades + Carrega imatges incrustades @@ -1760,7 +1752,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + No enviar avís d'estar escribint @@ -1818,14 +1810,14 @@ Double click a chat room to enter and chat. Style: - + Estil: Variant: - + Variant: @@ -1842,7 +1834,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + Escull una tipografia pel Xat. @@ -1899,10 +1891,6 @@ Double click a chat room to enter and chat. /me is sending a message with /me /me està enviant un missatge amb /me - - Chat - Xat - <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> @@ -2011,7 +1999,7 @@ Double click a chat room to enter and chat. Chats - + Xats @@ -2093,7 +2081,7 @@ Double click a chat room to enter and chat. Insert emoticon - + Insertar emoticona @@ -2103,7 +2091,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + <html><head/><body><p>QToolButton:desactivat {</p><p> imatge: url(:/icons/png/send-message-blocked.png) ;}</p><p>}</p><p><br/></p></body></html> @@ -2200,7 +2188,7 @@ Double click a chat room to enter and chat. Show Hidden Images - + Mostrar imatges ocultes @@ -2224,7 +2212,7 @@ després de convertir a HTML. Choose your font. - + Escull el tipus de lletra @@ -2259,11 +2247,7 @@ després de convertir a HTML. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Els missatges s'entregaran quan l'amic sigui altra vegada en línia + Els missatges s'entregaran quan l'amic sigui altra vegada en línia. @@ -2351,18 +2335,19 @@ després de convertir a HTML. Person id: - + Id de la persona: Double click on it to add his name on text writer. - + +Doble clic per afegir el seu nom al text escrit. Unsigned - + No signat @@ -2547,10 +2532,6 @@ Double click on it to add his name on text writer. Details Detalls - - Peer Address - Adreça del contacte - @@ -2565,12 +2546,12 @@ Double click on it to add his name on text writer. Node info: - + Informació de node: Current address: - + Adreça actual: @@ -2583,10 +2564,6 @@ Double click on it to add his name on text writer. Port Port - - Addresses list - Llista d'adreces - Include signatures @@ -2616,10 +2593,6 @@ Double click on it to add his name on text writer. Not connected No connectat - - Peer Addresses - Adreces del contacte - Retroshare node details @@ -2653,17 +2626,17 @@ Double click on it to add his name on text writer. Name: - Nom: + Nom: Status message: - + Missatge d'estat: List of known addresses: - + Llista d'adreces conegudes: @@ -2753,7 +2726,8 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how 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) @@ -2779,12 +2753,12 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Obre el certificat d'un amic des d'un arxiu Open certificate - + Obre un certificat @@ -3011,12 +2985,6 @@ resources. &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 @@ -3025,22 +2993,22 @@ resources. RetroShare certificate - + Certificat Retroshare Please paste below your friend's Retroshare certificate - + Si us plau, enganxa el certificat de Retroshare del teu amic aquí sota Paste certificate - + Enganxar certificat <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile 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 del perfil del teu amic. No enganxis la clau del perfil del teu amic aquí (Ni tan sols part d'ella). No funcionarà.</p></body></html> @@ -3099,7 +3067,7 @@ resources. <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;">Signar la clau d'un amic és una forma d'expressar la teva confiança en aquest amic als teus altres amics. Les signatures a sota testimonien criptogràficament que els propietaris de les claus llistades reconeixen la clau PGP com autèntica. </span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Signar la clau d'un amic és una forma d'expressar la teva confiança en aquest amic als teus altres amics. Les signatures a sota testimonien criptogràficament que els propietaris de les claus llistades reconeixen la clau PGP com autèntica. </span></p></body></html> @@ -3190,12 +3158,12 @@ resources. Certificate appears to be valid - + El certificat sembla vàlid Not a valid Retroshare certificate! - + No és un certificat de Retroshare vàlid! @@ -3208,31 +3176,33 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Avís: En les opcions de Transferència d'arxius, has marcat descarrega directa com Sí. Warning: In your File-Transfer option, you select allow direct download to No. - + +Avís: En les opcions de Transferència d'arxius, has marcat descarrega directa com No. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + Aquest és el teu certificat! No vols fer-te amic amb tu mateix, oi? This key is already on your trusted list - + Aquesta clau ja és a la teva llista de confiança You have already signed this key - + Ja havies signat aquesta clau @@ -3373,27 +3343,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + Mostrar opcions avançades <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;">Signar la clau d'un amic és una forma d'expressar la teva confiança en aquest amic als teus altres amics. Els ajudarà a decidir si volen acceptar o no connexions d'aquesta clau basant-se en la teva confiança. Signar una clau és completament opcional i no es pot desfer, fes-ho amb cura.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Signar la clau d'un amic és una forma d'expressar la teva confiança en aquest amic als teus altres amics. Els ajudarà a decidir si volen acceptar o no connexions d'aquesta clau basant-se en la teva confiança. Signar una clau és completament opcional i no es pot desfer, fes-ho amb cura.</span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - <html><head/><body><p align="justify">El RetroShare periòdicament comprova la teva llista d'amics per arxius navegables que coincideixin amb els mateixos que estàs descarregant, per establir una transferència directa. En aquest cas els teus amics sabran què descarregues.</p><p align="justify">Si no vols que això passi per algun amic en concret, desmarca aquesta casella. Encara podràs realitzar transferències directes si ho demanes explícitament, per exemple descarregant de la llista del teu amic directament. Això s'aplicarà a totes les ubicacions del mateix node.</p></body></html> + <html><head/><body><p align="justify">El Retroshare periòdicament comprova la teva llista d'amics per arxius navegables que coincideixin amb els mateixos que estàs descarregant, per establir una transferència directa. En aquest cas els teus amics sabran què descarregues.</p><p align="justify">Si no vols que això passi per algun amic en concret, desmarca aquesta casella. Encara podràs realitzar transferències directes si ho demanes explícitament, per exemple descarregant de la llista del teu amic directament. Això s'aplicarà a totes les ubicacions del mateix node.</p></body></html> <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. Applied to all locations of the same node.</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. S'aplica a totes les ubicacions del mateix node.</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. S'aplica a totes les ubicacions del mateix node.</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. Applies to all locations of the same node.</p></body></html> - <html><head/><body><p>Els contactes que tenen aquesta opció no poden conectar-se si la seva adreça no és a la llista blanca. Això et protegeix d'atacs de reenviament. Quan s'usen, els contactes refusats són notificats a la secció de Novetats amb un tiquet de seguretat. Des d'allí es pot decidir que fer amb la IP. S'aplica a totes les ubicacions del mateix node.</p></body></html> + <html><head/><body><p>Els contactes que tenen aquesta opció no poden connectar-se si la seva adreça no és a la llista blanca. Això et protegeix d'atacs de reenviament. Quan s'usen, els contactes refusats són notificats a la secció de Novetats amb un tiquet de seguretat. Des d'allí es pot decidir que fer amb la IP. S'aplica a totes les ubicacions del mateix node.</p></body></html> @@ -3593,13 +3563,21 @@ encara que no sigueu 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lucida Grande'; font-size:13pt;">Aquest control mostra el progrés de la connexió amb el teu nou contacte.</span></p> +<p 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;">És molt útil per solucionar problemes.</span></p> +<p style="-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;"><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:'Lucida Grande'; font-size:13pt;">Si ets un usuari expert de RS o confies en que el RS farà el correcte</span></p> +<p 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;">pots tancar-lo.</span></p></body></html> @@ -3963,26 +3941,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Si us plau, intenta-ho important un certificat complet - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;">Aquest control mostra el progrés de la connexió amb el teu nou contacte.</span></p> -<p 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;">És molt útil per solucionar problemes.</span></p> -<p style="-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;">Si ets un usuari expert de RS o confies en que el RS farà el correcte</span></p> -<p 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;">pots tancar-lo.</span></p></body></html> - @@ -4045,12 +4003,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>El nom del cercle, contacte de l'autor i la llista de membres invitats serà visible a tots els membres invitats. Si el cercle no és privat, també serà visible pels nodes veïns dels nodes que pertanyen als membres invitats.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + <html><head/><body><p>El creador d'un cercle és totalment opcional. Pot ser útil pels cercles públics perquè la gent pugui saber amb qui discutir aspectes de pertinença al cercle.</p></body></html> @@ -4103,19 +4061,11 @@ p, li { white-space: pre-wrap; } Name: Nom: - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - <html><head/><body><p>El nom del cercle, contacte de l'autor i la llista de membres invitats serà visible a tots els membres invitats. Si el cercle no és privat, també serà visible pels nodes veïns dels nodes que pertanyen als membres invitats. - Contact author: Contactar autor: - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - <html><head/><body><p>El creador d'un cercle és totalment opcional. Pot ser útil pels cercles públics perquè la gent pugui saber amb qui discutir aspectes de pertinença al cercle.</p></body></html> - [Circle Admin] @@ -4326,9 +4276,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4450,7 +4400,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Editar publicació al canal @@ -4509,7 +4459,7 @@ p, li { white-space: pre-wrap; } Edit Message - + Editar missatge @@ -4541,13 +4491,14 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Cancel·lar missatge al fòrum Forum Message has not been sent yet! Do you want to discard this message? - + El missatge pel fòrum encara no s'ha enviat! +Vols descartar aquest missatge? @@ -4580,16 +4531,6 @@ Do you want to discard this message? Send Enviar - - Forum Message - Missatge del fòrum - - - Forum Message has not been Sent. -Do you want to reject this message? - El missatge pel fòrum no s'ha enviat. -Vols descartar aquest missatge? - Post as @@ -4666,12 +4607,12 @@ Vols descartar aquest missatge? Create Chat Room - + Crear sala de xat Put a sensible chat room name here - + Escriu un nom adient per la sala de xat @@ -4899,17 +4840,17 @@ Vols descartar aquest missatge? Faster - Més ràpida + Més ràpida Average - Mitjana + Mitjana Slower - Més lenta + Més lenta @@ -5840,7 +5781,7 @@ Vols descartar aquest missatge? # Files - + # Arxius @@ -5870,12 +5811,12 @@ Vols descartar aquest missatge? Column %1 - + Columna %1 Row %1 - + Fila %1 @@ -5895,10 +5836,6 @@ Vols descartar aquest missatge? Expand new messages Expandeix missatges nous - - Forum - Fòrum - Load embedded images @@ -5907,12 +5844,12 @@ Vols descartar aquest missatge? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + <html><head/><body><p>Aquesta opció és costosa i està en els plans dels desenvolupadors millorar-la. Per ara està desactivada per defecte. Si l'actives i una entrada de fòrum triga massa a mostrar-se, desactiva-la de nou. </p></body></html> Load emoticons (costly) - + Carregar emoticones (costós) @@ -5927,7 +5864,7 @@ Vols descartar aquest missatge? Forums - Fòrums + Fòrums @@ -5941,7 +5878,7 @@ Vols descartar aquest missatge? ID - ID + ID @@ -5977,7 +5914,7 @@ Vols descartar aquest missatge? Trusted nodes - + Nodes de confiança @@ -6030,7 +5967,7 @@ Vols descartar aquest missatge? Search ID - ID cerca + ID cerca @@ -6040,12 +5977,12 @@ Vols descartar aquest missatge? Profile details - + Detalls del perfil Deny connections - Denegar connexions + Denegar connexions @@ -6070,17 +6007,17 @@ Vols descartar aquest missatge? Send message to this node - + Enviar un missatge a aquest node Node details - + Detalls del node Recommend this node to... - + Recomanar aquest node a ... @@ -6171,10 +6108,6 @@ com a mínim un dels contactes no s'ha afegit a un grup Error Error - - Failed to get a file! - No s'ha pogut obtenir un arxiu! - File is not writeable! @@ -6192,7 +6125,7 @@ com a mínim un dels contactes no s'ha afegit a un grup Show Items - + Mostrar elements @@ -6245,42 +6178,42 @@ com a mínim un dels contactes no s'ha afegit a un grup Dialog - Diàleg + Diàleg Message: - Missatge: + Missatge: Recommend friends - Recomanar amics + Recomanar amics To - A + A Please select at least one friend for recommendation. - Si us plau, escull almenys un amic per recomanació. + Si us plau, escull almenys un amic per recomanació. Please select at least one friend as recipient. - Si us plau, selecciona almenys un amic com a destinatari. + Si us plau seleccioni almenys un amic com a destinatari. Recommendation messages sent! - + Recomanació enviada! A recommendation message was sent to each of the chosen friends! - + S'ha enviat una recomanació a cadascún dels amics escollits! @@ -6316,7 +6249,7 @@ com a mínim un dels contactes no s'ha afegit a un grup Filter only connected - + Mostra només els connectats @@ -6479,14 +6412,6 @@ com a mínim un dels contactes no s'ha afegit a un grup All fields are required with a minimum of 3 characters Tots els camps són obligatoris amb un mínim de 3 caràcters - - Password (check) - Contrasenya (marca) - - - [Required] Type the same password again here. - [Requerit] Escriu la mateixa contrasenya altre cop aquí. - Passwords do not match @@ -6500,7 +6425,7 @@ com a mínim un dels contactes no s'ha afegit a un grup Use BOB - + Utilitza BOB @@ -6508,19 +6433,11 @@ com a mínim un dels contactes no s'ha afegit a un grup This password is for PGP Aquesta contrasenya és pel PGP - - Generate new node - Generar node nou - You can use it now to create a new node. Ara pots utilitzar-la per crear un node nou. - - Invalid hidden node - Node ocult invàlid - Node field is required with a minimum of 3 characters @@ -6531,99 +6448,81 @@ com a mínim un dels contactes no s'ha afegit a un grup 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. - - - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - Sembla que no existeix cap perfil (Claus PGP). Si us plau, omple el formulari inferior per crear-ne un, o importa'n un d'existent. - - - No node exists for this profile. - No existeix cap node per aquest perfil. - Options - Opcions + Opcions PGP Key Length - + Longitud de clau PGP <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Utilitza una contrasenya complicada. Aquesta contrasenya protegeix la clau privada del teu node!</p></body></html> <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + <html><head/><body><p>Si us plau, mou el ratolí una mica per captar tanta aleatorietat com sigui possible. És necessari arribar fins el 20% per crear la clau del teu node.</p></body></html> Standard node - + Node estàndard TOR/I2P Hidden node - + Node ocult Tor/I2P <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + <html><head/><body><p>El nom del teu node estableix la instancia de Retroshare que</p><p>s'executarà en el teu ordinador.</p></body></html> Use existing profile - + Tornar a utilitzar un perfil existent Node name - + Nom del node <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + <html><head/><body><p>El nom del perfil t'identifica a tu a la xarxa.</p><p>És l'utilitzat pels teus amics per acceptar les teves connexions.</p><p>Pots crear multiples nodes de Retroshare amb el</p><p>mateix perfil a ordinadors diferents.</p><p><br/></p></body></html> Export this profle - + Exportar aquest perfil <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&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>Per tal d'obtindre'n una has de configurar o Tor o I2P per crear un nou servei ocult/servidor de túnel. <p><p>Pots deixar-ho en blanc ara, però el teu node només funcionarà si poses una adreça Tor/I2P a les opcions del Retroshare a Opcions>Xarxa->Panell de configuració de servei ocult.</p></body></html> <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + <html><head/><body><p>Les identitats s'utilitzen quan escrius en sales de xat, fòrums i comentaris en canals. </p><p>També s'empren quan envies/reps correus electrònics per la xarxa de Retroshare. Pots crear </p><p>una identitat signada ara o deixar-ho per més tard, quan ho necessitis.</p></body></html> Go! - + Som-hi! TextLabel - + EtiquetaText @@ -6646,24 +6545,11 @@ També pots utilitzar una identitat ja existent. Només has de desactivar l&apos <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>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> - - PGP key length - Longitud de clau PGP - Click to create your node and/or profile Clica per crear el teu node i/o perfil - - Generate new profile and node - Generar nou perfil i node - - - 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" - Benvingut al RetroShare. Abans que continuïs has de crear un perfil i associar un node a aquest. Per fer-ho completa aquesta formulari. També pots utilitzar un perfil ja existent (previament exportat). Només has de desactivar l'opció "Crear un nou perfil" - Export profile @@ -6711,62 +6597,62 @@ i utilitzar el botó d'importació per carregar-lo Create new profile and new Retroshare node - + Crear un nou perfil i un node nou de Retroshare Create new Retroshare node - + Crear un node nou de Retroshare Tor/I2P address - + Adreça Tor/I2P Username - + Nom d'usuari Chat name - + Nom del xat Password again - + Confirma la contrasenya <p>Node creation is disabled until all fields correctly set.</p> - + <p>La creació de node està desactivada fins que els camps estiguin completats correctament.</p> <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + <p>La creació de node està desactivada fins que s'hagi acumulat suficient aleatorietat. Si us plau, mou el ratolí fins que arribis com a mínim al 20%.</p> I2P instance address with BOB enabled - + Adreça de la instancia I2P amb BOB activat. I2P instance address - + Adreça instancia I2P hidden service address - + adreça del servei ocult RetroShare profile files (*.asc);;All files (*) - + Arxiu de perfil del RetroShare (*.asc);;Tots els arxius (*) @@ -6791,16 +6677,12 @@ i utilitzar el botó d'importació per carregar-lo The GXS nickname is too short. Please input at least %1 characters. - + El nom GXS és massa curt. Si us plau, introdueix com a mínim %1 caràcters. The GXS nickname is too long. Please reduce the length to %1 characters. - - - - 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 + El nom GXS és massa llarg. Si us plau, introdueix com a màxim %1 caràcters. @@ -6891,7 +6773,7 @@ i utilitzar el botó d'importació per carregar-lo <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - <html><head/><body><p>Instal·la RetroShare amb un instal·lador de paquets per obtindre</p><p>/usr/share/applications/retroshare.desktop + <html><head/><body><p>Instal·la RetroShare amb un instal·lador de paquets per obtindre</p><p>/usr/share/applications/retroshare.desktop</p></body></html> @@ -6913,33 +6795,25 @@ i utilitzar el botó d'importació per carregar-lo seconds segons - - You have enough right. - Tens suficients permisos. - - - You don't have enough right. Run RetroShare as Admin to change this setting. - No tens suficients permisos. Executa RetroShare com a Admin per canviar aquestes opcions. - You have sufficient rights. - + Tens suficients permisos. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + No tens suficients permisos. Executa RetroShare com a Administrador per canviar aquestes opcions. For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Per raons de seguretat es desaconsella la utilització de l'auto-login, pots activar-lo sota la teva responsabilitat! Your RetroShare build has auto-login disabled. - + La teva versió de Retroshare té l'auto-login desactivat. @@ -6987,7 +6861,7 @@ i utilitzar el botó d'importació per carregar-lo <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7015,28 +6889,12 @@ p, li { white-space: pre-wrap; } Add Friends Afegir 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;">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;">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;">Enganxa el &quot;Certificat ID&quot; dels teus amics a la finestra i afegeix-los com amics.</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> @@ -7069,14 +6927,14 @@ 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: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"> @@ -7098,7 +6956,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:'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> @@ -7138,11 +6996,17 @@ 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: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 Friends' &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 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;">Enganxa el &quot;Certificat ID&quot; dels teus amics a la finestra i afegeix-los com amics.</span></p></body></html> @@ -7395,72 +7259,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + El contingut del directori és visible als nodes dels amics (Llista de la dreta) Directory content is NOT visible to friend nodes - + El contingut del directori NO és visible als nodels dels amics Directory can be searched anonymously - + El directori pot ser cercat anònimament Directory cannot be searched anonymously - + El directori no pot ser cercat anònimament Files can be accessed using anonymous tunnels - + Es pot accedir als arxius utilitzant túnels anònims Files can be accessed using anonymous & end-to-end encrypted tunnels - + Es pot accedir als arxius utilitzant túnels anònims encriptats de principi a fi Files cannot be downloaded anonymously - + No es poden descarregar els arxius anònimament All friend nodes can see this directory - + Tots els nodes amics poden veure aquest directori Only visible to friend nodes in groups: %1 - + Només visible a nodes amics en els grups: %1 Not visible to friend nodes - + No visible als nodes amics Files can be downloaded (but not searched) anonymously - + Els arxius poden ser descarregats (Però no cercats) anònimament Files can be downloaded and searched anonymously - + Els arxius poden ser descarregats i cercats anònimament Files can be searched (but not downloaded) anonymously - + Els arxius poden ser cercats (però no descarregats) anònimament No one can anonymously access/search these files. - + Ningú pot accedir/cercar anònimament a aquesta arxius. @@ -7550,12 +7414,12 @@ Nota: No es poden revocar els permisos d'administrador publicats Sort Descending Order - + Ordena en ordre descendent Sort Ascending Order - + Ordena en ordre ascendent @@ -7575,16 +7439,12 @@ Nota: No es poden revocar els permisos d'administrador publicats Sort by Number of Posts - - - - Sort by Posts - Ordenar per publicació + Ordenar per nombre de publicacións Sort by Unread - + Ordena per no llegit @@ -7600,12 +7460,12 @@ Nota: No es poden revocar els permisos d'administrador publicats Last Post - Darrer missatge + Darrera publicació Never - Mai + Mai @@ -7742,7 +7602,7 @@ Nota: No es poden revocar els permisos d'administrador publicats <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Canals</h1> <p>Canals et permet publicar dades (Ex: pel·lícules, música) que es propagaran 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 populars 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><p>Les entrades publicades es mantenen durant %1 dies, i es sincronitzen pels últims %2 dies, a no ser que ho canviïs.</p> @@ -7986,7 +7846,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Edit - Editar + Editar @@ -8068,7 +7928,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Comments - + Comentaris @@ -8097,7 +7957,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Add new post - + Afegir nova publicació @@ -8147,7 +8007,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Never - Mai + Mai @@ -8202,7 +8062,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Last Post: - + Última publicació: @@ -8254,48 +8114,48 @@ Nota: No es poden revocar els permisos d'administrador publicats Details - Detalls + Detalls Remove Item - Eliminar l'element + Eliminar l'element for identity - per identitat + per identitat You received a membership request for circle: - + Has rebut una petició de pertinença al cercle: Grant membership request - + Accepta la petició de pertinença Revoke membership request - + Rebutja la petició de pertinença You received an invitation for circle: - + Has rebut una invitació pel cercle: Accept invitation - + Acceptar invitació Received event from unknown Circle: - + Rebut esdeveniment de un cercle desconegut: @@ -8389,7 +8249,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Copy Comment - + Copiar comentari @@ -8414,7 +8274,7 @@ Nota: No es poden revocar els permisos d'administrador publicats<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8592,7 +8452,7 @@ abans de poder comentar New Thread - Nova conversa + Nova conversa @@ -8687,7 +8547,7 @@ abans de poder comentar <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> @@ -8882,127 +8742,127 @@ abans de poder comentar New thread - + Nova conversa Read status - + Estat de lectura Edit - Editar + Editar Reply to author with private message - + Respon a l'autor amb un missatge privat Give positive opinion - + Opinió positiva This will block/hide messages from this person, and notify friend nodes. - + Això bloquejarà/ocultarà els missatges d'aquesta persona i ho notificarà als nodes amics. Give neutral opinion - + Opinió neutre Doing this, you trust your friends to decide to forward this message or not. - + Si ho fas, confies en els teus amics per decidir si propagar o no aquest missatge. Give negative opinion - + Opinar negativament Show author in people tab - + Mostrar autor a la pestanya de gent Author's reputation - + Reputació de l'autor Anonymous/unknown posts forwarded if reputation is positive - + Els missatges anònims/desconeguts es propagaran si la reputació és positiva Anonymous posts forwarded if reputation is positive - + Els missatge anònims es propagaran si la reputació és positiva Last post - + Darrer missatge Never - Mai + Mai Synchronization - + Sincronització Storage - + Emmagatzematge Information for this identity is currently missing. - + No hi ha informació per aquesta identitat You have banned this ID. The message will not be displayed nor forwarded to your friends. - + Has prohibit aquesta identitat. El missatge no es mostrarà ni propagarà als teus amics. You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + No has establert una opinió per aquesta persona i els teus amics no opinien positivament: L'anti-spam evita que el missatge sigui propagat als teus amics. Message will be forwarded to your friends. - + El missatge es propagarà als teus amics. (Latest) - + (Nou) (Old) - + (Vell) You cant act on the author to a non-existant Message - + No pots fer res a l'autor d'un missatge que no existeix @@ -9063,7 +8923,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + <h1><img width="32" src=":/icons/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 es mantenen durant %1 dies i es sincronitzen durant %2 dies, si no ho canvies.</p> @@ -9159,10 +9019,6 @@ prevents the message to be forwarded to your friends. Message Distribution Distribució de missatge - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - <html><head/><body><p>Els missatges es distribuiran més enllà dels nodes dels teus amics, sempre que la gent es subscrigui al canal/fòrum/publicació que creis. - @@ -9171,10 +9027,6 @@ prevents the message to be forwarded to your friends. Public Públic - - Only For Your Friends - Només per als teus amics - Publish Signatures @@ -9304,7 +9156,7 @@ prevents the message to be forwarded to your friends. Never - Mai + Mai @@ -9370,7 +9222,7 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Els missatges es distribuiran més enllà dels nodes dels teus amics, sempre que la gent es subscrigui al canal/fòrum/publicació que creis.</p></body></html> @@ -9390,7 +9242,7 @@ prevents the message to be forwarded to your friends. Restricted node group - + Grup restringit a node @@ -9488,54 +9340,54 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + Sincronitza els missatges dels/de les últims/es... 5 days - + 5 dies 2 weeks - + 2 setmanes 1 month - + 1 mes 3 months - + 3 mesos 6 months - + 6 mesos 1 year - + 1 any Indefinitly - + Indefinidament Store posts for at most... - + Guarda els missatges com a màxim... @@ -9655,107 +9507,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + Estadistiques d'encaminador GroupBox - Selecció de grup + Selecció de grup ID - ID + ID Destination - Destinació + Destinació Data status - Estat de les dades + Estat de les dades Data size - + Mida dades Data hash - Hash dades + Hash dades Sending time (secs ago) - Temps d'enviament (fa n segons) + Temps d'enviament (fa n segons) Group ID - + ID Grup Gxs Transport Groups: - + Grups transport GXS: Group ID / Author - + ID Grup / Autor Number of messages / Publish TS - + Nombre de missatges / TS publicats Local size of data - + Mida de les dades locals Subscribed - Subscrit + Subscrit Popularity - Popularitat + Popularitat Details - Detalls + Dells Unknown Peer - Contacte desconegut + Contacte desconegut Pending data items - + Elements pendents de dades Unknown - Desconegut + Desconegut Yes - + No - No + No @@ -10000,21 +9852,37 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Viqui del Retroshare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Fòrum del Retroshare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Plana de projecte del Retroshare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Bloc de l'equip del Retroshare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Twitter Desenvolupament Retroshare</span></a></li></ul></body></html> @@ -10036,18 +9904,33 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +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: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; font-weight:600;">RetroShare Translations:</span></p> +<p 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; font-weight:600;">Traducció 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:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p 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; font-weight:600;">Plana web traductors 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</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:8pt; font-weight:600;">Alemany: </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-size:8pt; font-weight:600;">Català: </span><span style=" font-size:8pt;"> Josep Creus</span><span style=" font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-size:8pt;">creus.informatic@gmail.com</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-weight:600;">Polac: </span>Maciej Mrug</p> +<p 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;">Suec: </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> +</body></html> @@ -10111,114 +9994,115 @@ p, li { white-space: pre-wrap; } Form - Formulari + Formulari Did you receive a certificate from a friend? - + Has rebut un certificat de part d'un amic? Add friends certificate - + Afegir certificat d'un amic Add certificate file - + Afegir arxiu de certificat Share your RetroShare Key - + Comparteix la teva clau de Retroshare ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + El text a sota és el teu certificat de Retroshare. Envia'l als teus amic Open Source cross-platform, private and secure decentralized communication platform. - + Plataforma decentralitzada de comunicacions de codi obert, multi-plataforma, privada i segura. + Launch startup wizard - + Executar assistent d'inici Do you need help with RetroShare? - + Necessites ajuda amb el RetroShare? Open Web Help - + Ajuda a la web oberta Copy your Cert to Clipboard - Copiar el teu certificat al porta-retalls + Copiar el teu certificat al porta-retalls Save your Cert into a File - Desar el teu certificar en un arxiu + Desar el teu certificar a un arxiu Send via Email - + Enviar per correu Invite via WebMail - + Invitat per WebMail Recommend friends to each others - + Recomanar amics entre ells <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Benvingut a Retroshare!</h1>  <p>Necessites <b>fer amics</b>! Un cop hagis creat una xarxa de nodes de Retroshare, o t'hagis unit a una xarxa existent, podràs intercanviar arxius, xatejar, parlar a fòrums, etc.</p><div align=center><IMG align="center" width="%2" src=":/images/network_map.png"/></div><p>Per fer-ho, copia el teu certificat d'aquesta pàgina i envia'l als teus amics, i afegeix aquí els certificats del teus amics.</p> <p>Una altra opció és cercar a internet per "servidors de xat de Retroshare" (administrats independentment). Els servidors et permeten intercanviar certificats amb un node de Retroshare dedicat, utilitzant-lo podràs trobar altres persones anònimament.</p> RetroShare Invite - Invita al RetroShare + Invitació de RetroShare Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - S'ha copiat el teu certificat al porta-retalls, enganxa'l i envia'l al teu amic per correu + S'ha copiat el teu certificat al porta-retalls, enganxa'l i envia'l al teu amic per correu Save as... - Desa com... + Desa com... RetroShare Certificate (*.rsc );;All Files (*) - Certificat RetroShare (*.rsc );;Tots els arxius (*) + Certificat RetroShare (*.rsc );;Tots els arxius (*) Home - Casa + Casa @@ -10237,17 +10121,22 @@ private and secure decentralized communication platform. Friends votes: - + Vots d'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: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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </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: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-family:'Sans'; font-size:9pt;">La teva opinió sobre una identitat controla la visibilitat d'aquesta per tu i els teus nodes amics. La teva opinió es comparteix amb els teus amics i s'utilitza per calcular una puntuació de reputació: Si la teva opinió sobre una identitat és neutre, la puntuació de reputació és la mitjana de l'opinió dels teus amics. Si no, la teva opinió preval.</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:9pt;">La puntuació total s'utilitza en les sales de xat, fòrums i canals per decidir que fer amb cada identitat. Quan la puntuació està per sota de -0.6 la identitat és expulsada, el que fa que tots els missatges, fòrums i canals per dita identitat no es reenvien, en cap sentit. Alguns fòrums tenen una opció anti-SPAM que obliga a tindre un nivell de reputació més alt, fent que siguin més sensibles a males reputacions. Les identitats expulsades van perdent gradualment la seva activitat i finalment desapareixent (després de 30 dies). </span></p></body></html> @@ -10282,12 +10171,12 @@ p, li { white-space: pre-wrap; } Ban-option: - + Opció-expulsar: Auto-Ban all identities signed by the same node - + Expulsa automàticament totes les identitats signades pel mateix node @@ -10298,23 +10187,23 @@ p, li { white-space: pre-wrap; } Send Invite - Enviar invitació + Enviar invitació Positive votes - + Vots positius 0 - 0 + 0 Negative votes - + Vots negatius @@ -10356,7 +10245,7 @@ p, li { white-space: pre-wrap; } [unverified] - [no verificat] + [no verificat] @@ -10416,52 +10305,52 @@ p, li { white-space: pre-wrap; } positive - + positiu negative - + negatiu No votes from friends - + Sense vots dels amics Negative (Banned by you) - + Negativa (Expulsat per tu) Positive (according to your friends) - + Positiva (segons els teus amics) Negative (according to your friends) - + Negativa (segons els teus amics) Hi,<br>I want to be friends with you on RetroShare.<br> - Hola,<br> vull ser amic amb tu en el RetroShare.<br> + Hola, <br>vull ser amic teu al Retroshare.<br> You have a friend invite - + Tens una petició d'amistat Respond now: - + Respondre ara: Thanks, <br> - Gràcies, <br> + Gracies, <br> @@ -10505,7 +10394,7 @@ p, li { white-space: pre-wrap; } Votes - + Vots @@ -10515,61 +10404,43 @@ p, li { white-space: pre-wrap; } Close - Tancar + Tancar Ban-option: - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">La teva opinió sobre una identitat controla la visibilitat d'aquesta per tu i els teus nodes amics. La teva opinió es comparteix amb els teus amics i s'utilitza per calcular una puntuació de reputació: Si la teva opinió sobre una identitat és neutre, la puntuació de reputació és la mitjana de l'opinió dels teus amics. Si no, la teva opinió estableix la puntuació.</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La puntuació total s'utilitza en les sales de xat, fòrums i canals per decidir que fer amb cada identitat. Quan la puntuació està per sota de -0.6 la identitat és expulsada, tots els missatges, fòrums i canals per dita identitat no es reenvien, en cap sentit. Alguns fòrums tenen una opció anti-SPAM que obliga a tindre un nivell de reputació més alt, fent que siguin més sensibles a males reputacions. Les identitats expulsades van perdent gradualment la seva activitat i finalment desapareixent (després de 30 dies). </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> + Opció-expulsar: Auto-Ban all identities signed by the same node - + Expulsa automàticament totes les identitats signades pel mateix node Friend votes: - + Vots de l'amic: Positive votes - + Vots positius 0 - 0 + 0 Negative votes - + Vots negatius Usage statistics - + Estadístiques d'ús @@ -10662,7 +10533,7 @@ p, li { white-space: pre-wrap; } Create new... - + Crear nou... @@ -10689,13 +10560,21 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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;">La teva opinió sobre una identitat controla la visibilitat d'aquesta per tu i els teus nodes amics. La teva opinió es comparteix amb els teus amics i s'utilitza per calcular una puntuació de reputació: Si la teva opinió sobre una identitat és neutre, la puntuació de reputació és la mitjana de l'opinió dels teus amics. Si no, la teva opinió estableix la puntuació.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La puntuació total s'utilitza en les sales de xat, fòrums i canals per decidir que fer amb cada identitat. Quan la puntuació està per sota de -1 la identitat és expulsada, tots els missatges, fòrums i canals per dita identitat no es reenvien, en cap sentit. Alguns fòrums tenen una opció anti-SPAM que obliga a tindre un nivell de reputació no negatiu, fent que siguin més sensibles a males reputacions. Les identitats expulsades van perdent gradualment la seva activitat i finalment desapareixent (després de 5 dies). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Pots canviar aquests mínims i el temps d'inactivitat per esborrar una identitat a Preferencies -&gt; Gent. </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> @@ -10757,7 +10636,7 @@ p, li { white-space: pre-wrap; } Show Items - + Mostrar elements @@ -10849,10 +10728,6 @@ p, li { white-space: pre-wrap; } Not a member (do not have access to data limited to this circle) No ets membre (No tens accés a dades limitades a aquest cercle) - - Unknown ID : - ID desconegut: - Identity ID: @@ -10949,7 +10824,7 @@ p, li { white-space: pre-wrap; } -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. @@ -10988,7 +10863,7 @@ Aquestes identitats deixaran de ser suportades en breu. Identity owned by you, linked to your Retroshare node but not yet validated - + Identitat propietat teva, enllaçat amb el teu node de RetroShare però no validada encara @@ -11003,33 +10878,33 @@ Aquestes identitats deixaran de ser suportades en breu. Message in chat room %1 - + Missatge a la sala de xat %1 information - + informació This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + L'enllaç d'identitat s'ha copiat al porta-retalls. Enganxa'l a un correu, o a un missatge, per enviar la identitat a algú. Copy identity to clipboard - + Copiar identitat al porta-retalls Send invite? - + Enviar invitació? Do you really want send a invite with your Certificate? - + Estàs segur de voler enviar una invitació amb el teu certificat? @@ -11039,152 +10914,152 @@ Aquestes identitats deixaran de ser suportades en breu. <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identitats</h1><p>En aquesta pestanya pots crear/editar identitats <b>pseudo-anònimes</b> i <b>cercles</b>.</p><p>Les <b>Identitats</b> s'utilitzen per identificar les teves dades: signar missatges publicats a les sales de xat, fòrums i canals, rebre comentaris utilitzant el sistema intern de correu electrònic o publicar-ne a entrades dels canals, xatejar utilitzant túnels segurs, etc.</p> <p>Les identitats poden estar <b>signades</b> pel certificat del seu node de Rertoshare. És més fàcil confiar en identitats signades però es poden seguir fàcilment fins a la IP del node al que pertanyen.</p> <p>Les <b>identitats anònimes</b> et permetran interactuar amb altres usuaris de forma anònima. No es poden falsificar, però ningú pot provar qui té en realitat una determinada identitat.</p> <p>Els <b>cercles</b> són grups d'identitats (anònimes o signades) que són compartides a certa distancia, salts entre nodes, per la xarxa. Es poden utilitzar per restringir la visibilitat de fòrums, canals, etc. </p> <p>Un <b>cercle</b> pot estar restringit a un altre cercle, limitant la visibilitat als membres d'aquest cercle o inclús es pot auto-restringir, que vol dir que només es visible a membres invitats.</p> Unknown ID: - + ID desconegut: positive - + positiu negative - + negatiu No votes from friends - + Sense vots dels amics Negative (Banned by you) - + Negativa (Expulsat per tu) Positive (according to your friends) - + Positiva (segons els teus amics) Negative (according to your friends) - + Negativa (segons els teus amics) <b>[No record in current session]</b> - + <b>[Sense registres a la sessió actual]</b> Channels - Canals + Canals Forums - Fòrums + Fòrums Posted - Enviat + Enviat Chat - Xat + Xat Unknown - Desconegut + Desconegut [Unknown] - [Desconegut] + [Desconegut] Admin signature in service %1 - + Signatura administrativa al servei %1 Admin signature verification in service %1 - + Verificació de signatura administrativa al servei %1 Creation of author signature in service %1 - + Creació de signatura d'autor al servei %1 Message/vote/comment - + Missatge/vot/comentari %1 in %2 tab - + %1 a la pestanya %2 Distant message signature validation. - + Comprovació de signatura de missatge distant Distant message signature creation. - + Creació de signatura de missatge distant Signature validation in distant tunnel system. - + Comprovació de signatura al sistema de túnel distant Signature in distant tunnel system. - + Signatura al sistema de túnel distant. Update of identity data. - + Actualització de dades d'identitat Generic signature validation. - + Comprovació de signatura genèrica Generic signature. - + Signatura genèrica Generic encryption. - + Encriptació genèrica Generic decryption. - + Desencriptació genèrica Membership verification in circle %1. - + Comprovació de pertinença al cercle %1. @@ -11607,21 +11482,17 @@ Aquestes identitats deixaran de ser suportades en breu. Recommend in a message to... - + Recomanar en un missatge a... Share on channel... - + Compartir en el canal... Share on forum... - - - - Recommend in a message to - Recomanar en un missatge a + Compartir en el fòrum... @@ -12417,17 +12288,17 @@ Voleu desar el missatge? Hi,<br>I want to be friends with you on RetroShare.<br> - Hola,<br> vull ser amic amb tu en el 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: @@ -12593,10 +12464,6 @@ Voleu desar el missatge? Edit Tag Editar etiqueta - - Message - Missatge - Distant messages: @@ -12610,7 +12477,7 @@ Voleu desar el missatge? Mail - + Correu @@ -12674,7 +12541,7 @@ Voleu desar el missatge? Send Invite - Enviar invitació + Envia invitació @@ -12724,12 +12591,12 @@ Voleu desar el missatge? Send invite? - + Enviar invitació? Do you really want send a invite with your Certificate? - + Estàs segur de voler enviar una invitació amb el teu certificat? @@ -13325,7 +13192,7 @@ Voleu desar el missatge? Mail - + Correu @@ -13379,7 +13246,7 @@ Voleu desar el missatge? Send Invite - Enviar invitació + Enviar invitació @@ -13415,12 +13282,12 @@ Voleu desar el missatge? from - des de + des de Reply to invite - + Respondre a la invitació @@ -13450,12 +13317,12 @@ Voleu desar el missatge? Send invite? - + Enviar invitació? Do you really want send a invite with your Certificate? - + Estàs segur de voler enviar una invitació amb el teu certificat? @@ -13528,22 +13395,6 @@ Voleu desar el missatge? Name Nom - - Did I authenticated peer - He autenticat el contacte - - - Did I sign his PGP key - He signat aquesta clau PGP - - - Cert Id - Id Cert - - - Last used - Últim utilitzat - Clear @@ -13621,7 +13472,7 @@ Voleu desar el missatge? - 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. @@ -13662,52 +13513,6 @@ Per seguretat, s'ha fet una copia de seguretat del teu clauer Cannot create backup file. Check for permissions in pgp directory, disk space, etc. No es pot crear la copia de seguretat. Comprova els permisos en el directori del PGP, espai lliure, etc. - - Personal signature - Signatura personal - - - PGP key signed by you - Clau PGP signada per tu - - - Marginally trusted peer - Contacte de poca confiança - - - Fully trusted peer - Contacte de confiança plena - - - Untrusted peer - Contacte no de confiança - - - Last hour - Última hora - - - Today - Avui - - - Never - Mai - - - %1 days ago - fa %1 dies - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - t'ha autenticat. -Botó dret i selecciona 'fer amic' per poder connectar-hi. - - - yourself - tu mateix - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13723,10 +13528,6 @@ 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 - Search name @@ -13740,7 +13541,7 @@ Botó dret i selecciona 'fer amic' per poder connectar-hi. Profile details... - + Detalls del perfil... @@ -13816,7 +13617,7 @@ Error reportat: Log entries - + Entrades en el registre @@ -13846,12 +13647,13 @@ Error reportat: <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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;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> Log - + Registre @@ -13890,7 +13692,7 @@ Error reportat: Chat Room - + Sala de xat @@ -13927,27 +13729,27 @@ Error reportat: Friend Connected - Amic connectat + Amic connectat Circles - Cercles + Cercles Links - + Enllaços Mails - + Correus Chats - + Xats @@ -13972,32 +13774,32 @@ Error reportat: Chat rooms - + Sales de xat Chat Rooms - + Sales de xat Count occurrences of my current identity - + Comptar quants cops hi ha la meva identitat actual Count occurrences of any of the following texts (separate by newlines): - + Comptar coincidències de qualsevol dels texts següents (un per línia): Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Marca'l si identitats i texts a la part superior han de coincidir en majúscules/minúscules pel comptador. Case sensitive - Diferenciar majúscules/minúscules + Diferenciar majúscules/minúscules @@ -14090,31 +13892,23 @@ Error reportat: 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 Passphrase required - + Es requereix contrasenya You need to sign your node's certificate. - + Has de signar el certificat del teu node. You need to sign your forum/chatrooms identity. - + Has de signar la teva indentitat per fòrums/xats. @@ -14124,7 +13918,7 @@ Error reportat: Please enter your Retroshare passphrase - + Si us plau, introdueix la contrasenya del Retroshare @@ -14215,7 +14009,7 @@ Error reportat: - 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 @@ -14227,13 +14021,13 @@ Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les t <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + <p>Avís: Aquest mode d'operació desactiva el servei de túnels. Això significa que podràs fer xats distants, però no descarregues d'arxius anònimes i el servei de correu anirà més lent.</p> <p>L'estat es guarda encara que reiniciïs el RetroShare, recorda tornar-ho a canviar!</p> Turtle routing disabled! - + Encaminador Turtle desactivat! @@ -14246,12 +14040,12 @@ Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les t Profile info - + Informació del perfil Name : - Nom : + Nom : @@ -14306,7 +14100,7 @@ Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les t This profile has signed your own profile key - + Aquest perfil ha signat la clau del teu perfil @@ -14323,7 +14117,7 @@ Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les t <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 align="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"> @@ -14334,17 +14128,17 @@ p, li { white-space: pre-wrap; } Sign this key - + Signa aquesta clau PGP key - + Clau PGP These options apply to all nodes of the profile: - + Aquestes opcions s'apliquen a tots els nodes del perfil: @@ -14379,7 +14173,7 @@ p, li { white-space: pre-wrap; } Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + A sota teniu la clau del perfil del node en format PGP ASCII. Identifica tots els nodes del mateix perfil. Un "certificat de Retroshare" que pots intercanviar per fer amics, és a "detalls" de cada node. @@ -14467,13 +14261,15 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Avís: En les opcions de Transferència d'arxius, has marcat descarrega directa com Sí. Warning: In your File-Transfer option, you select allow direct download to No. - + +Avís: En les opcions de Transferència d'arxius, has marcat descarrega directa com No. @@ -14538,7 +14334,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Retroshare profile - + Perfil de Retroshare @@ -14625,7 +14421,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Diferencia de temps: @@ -14655,7 +14451,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + Diferencia de temps amb l'amic @@ -14770,63 +14566,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. Reputation - Reputació + Reputació <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + <html><head/><body><p>Qualsevol de la teva llista de contactes tindrà automàticament una opinió positiva, si no ho canvies. Això permet que la reputació dels nodes en ús tinguin millor reputació.</p></body></html> automatically give "Positive" opinion to my contacts - + donar automàticament una opinió "Positiva" als meus contactes Difference in votes (+/-) to rate an ID negatively: - + Diferencial de vots (+/-) per donar una opinió negativa a una Id: <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Quan una identitat rep més vots negatius que positius, canvia de &quot;Neutral&quot; a &quot;Negatiu (segons els teus amics)&quot;. Per defecte, una diferencia d'un vot és suficient, però pots evitar que això passi escollint un número més alt.</p></body></html> <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Quan una identitat rep més vots positius que negatius, canvia de &quot;Neutral&quot; a &quot;Positiu (segons els teus amics)&quot;. Per defecte, una diferencia d'un vot és suficient, però pots evitar que això passi escollint un número més alt.</p></body></html> Difference in votes (+/-) to rate an ID positively: - + Diferencial de vots (+/-) per donar una opinió positiva a una Id: Delete banned identities after (0 means indefinitely): - + Esborra les identitats expulsades després de (0 significa indefinidament): Reset reputation of banned identities after (0 means never): - + Restableix la reputació de les identitats expulsades després de (0 significa mai): <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + <html><head/><body><p>A les identitats expulsades no se les vigila així que no registren activitat. S'esborren automàticament després d'un temps.</p></body> days - + dies <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + <html><head/><body><p>Per tal d'evitar que identitats expulsades esborrades tornin perquè estan sent usades a fòrums o canals, se les manté en una llista durant un temps. Si després d'aquest temps, s'esborren de la llista però continuen sent usades, tornaran a propagar-se per fòrums, sales de xat, etc.</p></body></html> @@ -14917,7 +14713,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14930,7 +14726,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14943,7 +14739,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15091,7 +14887,7 @@ abans de demanar editar-lo! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15165,44 +14961,28 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Error: instancia '%1' no pot crear un control Error: failed to remove file %1 (uninstalling plugin '%2') - + Error: No s'ha pogut treure l'arxiu %1 (desinstal·lant complement '%2') Error (uninstall): no plugin with name '%1' found - + Error (desinstal·lació): cap complement amb el nom '%1' Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Error: instancia '%1' no pot crear un control + Error (Instal·lació): l'arxiu %1 del complement no existeix Error: no plugin with name '%1' found Error: no s'ha trobat cap complement '%1' - - Error(uninstall): no plugin with name '%1' found - Error(desinstal·lació): cap complement amb el nom '%1' - - - Error(installation): plugin file %1 doesn't exist - Error(Instal·lació): l'arxiu %1 del complement no existeix - - - Error: failed to remove file %1(uninstalling plugin '%2') - Error: No s'ha pogut treure l'arxiu %1(desinstal·lant complement '%2') - Error: can't copy %1 to %2 @@ -15387,33 +15167,25 @@ 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. - Remote status unknown. - + Estat remot desconegut. Can't send message immediately, because there is no tunnel available. - + No es pot enviar el missatge immediatament perquè no hi ha cap túnel disponible. The person you are talking to has deleted the secured chat tunnel. - + La persona amb qui estaves parlant ha esborrat el túnel de xat segur. The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + El company de xat ha esborrat el túnel segur, els missatges s'entregaran el més aviat possible. @@ -15425,14 +15197,6 @@ modificats. Kill the tunnel? Matar el túnel? - - Can't send message, because there is no tunnel. - No es pot enviar el missatge perquè no hi ha túnel. - - - Can't send message, because the chat partner deleted the secure tunnel. - No es pot enviar el missatge perquè el company de xat ha esborrat el túnel segur. - PostedCreatePostDialog @@ -15502,7 +15266,7 @@ modificats. <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Publicacions</h1> <p>El servei de publicacions 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 es mantenen durant %1 dies i es sincronitzen durant els últims %2 dies, a no ser que ho canviïs.</p> @@ -15532,7 +15296,7 @@ modificats. Links - + Enllaços @@ -15778,10 +15542,6 @@ modificats. Tabs Pestanyes - - Posted - Enviat - Open each topic in a new tab @@ -15790,7 +15550,7 @@ modificats. Links - + Enllaços @@ -15852,13 +15612,21 @@ modificats. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 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"> +<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;">Selecciona una clau de node de RetroShare de la llista inferior per ser utilitzada en un altre ordinador, i prem &quot;Exportar clau 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;">Per crear una nova ubicació en un altre ordinador, selecciona el gestor de identitats en el diàleg d'entrada. Des d'allà podràs importar l'arxiu de clau i crear una nova ubicació per aquella clau.</p> +<p 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 node nou amb la mateixa clau fa que els nodes dels teus amics acceptin el nou node automàticament.</p></body></html> @@ -15949,26 +15717,6 @@ i utilitzar el botó d'importació per carregar-lo Certificates (*.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;"> -<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"> -<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;">Selecciona una clau de node de RetroShare de la llista inferior per ser utilitzada en un altre ordinador, i prem &quot;Exportar clau 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;">Per crear una nova ubicació en un altre ordinador, selecciona el gestor de identitats en el diàleg d'entrada. Des d'allà podràs importar l'arxiu de clau i crear una nova ubicació per aquella clau.</p> -<p 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 node nou amb la mateixa clau fa que els nodes dels teus amics acceptin el nou node automàticament.</p></body></html> - Full keys available in your keyring: @@ -16189,22 +15937,6 @@ and open the Make Friend Wizard. clauer PGP i obrir l'assistent de fer amic. - - Add file - Afegir arxiu - - - Add files - Afegir arxius - - - Do you want to process the link ? - Vols processar l'enllaç? - - - Do you want to process %1 links ? - Vols processar %1 enllaços? - Warning: Retroshare is about to ask your system to open this file. @@ -16218,22 +15950,22 @@ clauer PGP i obrir l'assistent de fer amic. Identity added to People - + Identitat afegida a Gent The identity was added to people. You can now chat with it, send messages to it, etc. - + La identitat s'ha afegit a Gent. A partir d'ara podràs xatejar-hi, enviar-li missatges, etc. Identity cannot be added to People - + La identitat no s'ha pogut afegir a Gent The identity was not added to people. Some error occured. The link is probably corrupted. - + La identitat no s'ha afegit a gent. Hi ha hagut algun error. Possiblement l'enllaç estigui malament. @@ -16368,22 +16100,22 @@ clauer PGP i obrir l'assistent de fer amic. Click to browse/download this file collection - + Clica per navegar/descarregar aquest arxiu de col·lecció %1 (%2) - + %1 (%2) Identity link (name=%1, ID=%2) - + Enllaç de la identitat (nom=%1, ID=%2) %1 (%2 files, %3) - + %1 (%2 arxius, %3) @@ -16403,7 +16135,7 @@ clauer PGP i obrir l'assistent de fer amic. Chat room not found - + Sala de xat no trobada @@ -16496,36 +16228,40 @@ Els caràcters <b>",|,/,\,&lt;&gt;,*,?</b> es substitui Cannot start Tor Manager! - + No es pot iniciar "Tor Manager"! Tor cannot be started on your system: - + No es pot iniciar Tor en el teu sistema: + + Cannot start Tor - + No es pot iniciar Tor Sorry but Tor cannot be started on your system! The error reported is:" - + Ho sentim però no es pot iniciar Tor en el teu sistema! + +L'error reportat és:" Cannot start a hidden tor service! - + No es pot iniciar un servei de Tor ocult! It was not possible to start a hidden service. - + No ha estat possible iniciar un servei ocult. @@ -16557,20 +16293,12 @@ Arxiu de bloqueig:\n Tunnel is pending... Messages will be delivered as soon as possible - + Túnel pendent... Els missatges s'entregaran el més aviat possible Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Túnel pendent... - - - Secured tunnel is working. You can talk! - Túnel segur establert. Podeu parlar! + Túnel segur establert. Els missatges s'entregaran immediatament! @@ -16740,7 +16468,7 @@ Seguretat: IDs anònimes no Join chat room - + Afegeix-te a la sala de xat @@ -16766,122 +16494,122 @@ Seguretat: IDs anònimes no Indefinitely - + Indefinidament 5 days - + 5 dies 2 weeks - + 2 setmanes 1 month - + 1 mes 2 month - + 2 mesos 6 month - + 6 mesos 1 year - + 1 any days - + dies Processing - + Processant Choosing group - + Escollint grup Creating receipt - + Creant rebut Signing receipt - + Signant rebut Serializing - + Serialitzant Creating payload - + Creant carrega útil Encrypting payload - + Encriptant carrega útil Publishing - + Publicant Waiting for receipt - + Esperant rebut Receipt received - + Rebut rebut Receipt signature failed - + Fallo a la signatura del rebut Encryption failed - + Ha fallat la encriptació Unknown - Desconegut + Desconegut Click to pause the hashing process - + Clica per pausar el procès de càlcul de hash [Hashing is paused] - + [Càlcul de hash pausat] Click to resume the hashing process - + Clica per continuar amb el càlcul de hash @@ -16896,12 +16624,12 @@ Seguretat: IDs anònimes no <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -17024,10 +16752,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17094,9 +16822,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17111,8 +16839,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -17296,17 +17024,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Opcions de la vista d'arbre Show column... - + Mostrar columna... [no title] - + [sense títol] @@ -17327,83 +17055,12 @@ p, li { white-space: pre-wrap; } <strong>Baixada:</strong> 0.00 (kiB/s) | <strong>Pujada:</strong> 0.00 (kiB/s) - - RelayPage - - Enable Relay Connections - Activa les connexions de repetidor - - - Use Relay Servers - Utilitza servidors de repetició - - - Relay options - Opcions repetició - - - Number - Número - - - Bandwidth per link - Ample de banda per enllaç - - - Total Bandwidth - Ample de banda total - - - Friends - Amics - - - kB/s - kB/s - - - Friends of Friends - Amics d'amics - - - General - General - - - Total: - Total: - - - Relay Server Setup - Configuració de servidor de repetició - - - Add Server - Afegir servidor - - - Server DHT Key - Clau DHT del servidor - - - Remove Server - Eliminar servidor - - - Relay - Repetidor - - - <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> - - RemoteSharedFilesDialog Download... - + Descarregar... @@ -17413,11 +17070,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Recomanar en un missatge a + Recomanar en un missatge a... @@ -17430,12 +17083,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + [Tots els nodes amics] Only - + Només @@ -17445,7 +17098,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + Aquest node no ha proporcionat encara cap informació de directori @@ -17515,32 +17168,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Guardar arxiu de col·lecció. + Guardar arxiu de col·lecció. File already exists. - L'arxiu ja existeix. + L'arxiu ja existeix. What do you want to do? - Que vols fer? + Que vols fer? Overwrite - Sobreescriure + Sobreescriure Merge - Afegir + Afegir Cancel - Cancel·la + Cancel·lar @@ -17563,12 +17216,12 @@ p, li { white-space: pre-wrap; } Destination: - + Destinació: Right click to change download directory - + Fes botó dret per canviar el directori de destí @@ -17604,7 +17257,7 @@ p, li { white-space: pre-wrap; } 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. Alguns noms d'arxius o directoris contenien caràcters prohibits. Els caràcters <b>",|,/,\,&lt;&gt;,*,?</b> es substituiran per '_'. @@ -17631,23 +17284,15 @@ Els arxius afectats es llisten en vermell. <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>Afegir elements seleccionats a la col·lecció.</p><p>Si s'escull un directori tots el seu contingut s'afegirà.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Entra&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>Crear un nou directori a la col·lecció.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - + - Remove Duplicate - + Treure duplicats @@ -17669,10 +17314,6 @@ Els arxius afectats es llisten en vermell. File Count Comptador d'arxius - - This is the root directory. - Aquest és el directori principal. - Real Size: Waiting child... @@ -17691,17 +17332,17 @@ Els arxius afectats es llisten en vermell. Download files - + Descarregar arxius Specify... - + Especificar... Choose directory - Escull directori + Escull directori @@ -17743,12 +17384,12 @@ Els arxius afectats es llisten en vermell. Do you want to remove them and all their children, too? - + Vols treure'ls incloent els seus fills, també? Do you want to remove this file from the list? - + Vols treure aquest arxiu de la llista? @@ -17818,30 +17459,6 @@ If you believe it is correct, remove the corresponding line from the file and re Si creus que és correcta, treu la línia corresponent de l'arxiu i torna'l a obrir amb el RetroShare. - - Save Collection File. - Guardar arxiu de col·lecció. - - - What do you want to do? - Que vols fer? - - - Overwrite - Sobreescriure - - - Merge - Afegir - - - Cancel - Cancel·la - - - File already exists. - L'arxiu ja existeix. - RsDownloadListModel @@ -17849,128 +17466,119 @@ Si creus que és correcta, treu la línia corresponent de l'arxiu i torna&a Name i.e: file name - Nom + Nom Size i.e: file size - Mida + Mida Completed - Completat + Completat Speed i.e: Download speed - Velocitat + Velocitat Progress / Availability i.e: % downloaded - Progrés / Disponibilitat + Progrés / Disponibilitat Sources i.e: Sources - Fonts + Fonts Status - Estat + Estat Speed / Queue position - Velocitat / Posició a la cua + Velocitat / Posició a la cua Remaining - Restant + Restant Download time i.e: Estimated Time of Arrival / Time left - Temps de descarrega + Temps de descarrega Hash - Hash + Hash Last Time Seen i.e: Last Time Receiced Data - Vist per última vegada + Vist per última vegada Path i.e: Where file is saved - Ruta + Ruta Failed - Fallat + Fallat Okay - Correcte + Correcte Waiting - Esperant + Esperant Downloading - Descarregant + Descarregant Complete - Complet + Complet Queued - En cua + En cua Paused - Pausat + Pausat Checking... - Comprovant... + Comprovant... Unknown - Desconegut - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - La imatge és massa gran per la transmissió. -Reduir la imatge a %1x%2 pixels? + Desconegut @@ -17997,7 +17605,7 @@ Reduir la imatge a %1x%2 pixels? filename - + nom d'arxiu @@ -18007,7 +17615,7 @@ Reduir la imatge a %1x%2 pixels? level - + nivell @@ -18017,7 +17625,7 @@ Reduir la imatge a %1x%2 pixels? style - + estil @@ -18027,7 +17635,7 @@ Reduir la imatge a %1x%2 pixels? stylesheet - + fulla d'estil @@ -18037,17 +17645,13 @@ Reduir la imatge a %1x%2 pixels? language - + llengua Sets RetroShare's language. Defineix la llengua del RetroShare. - - RetroShare Usage Information - Informació d'ús del RetroShare - Unable to open log file '%1': %2 @@ -18057,7 +17661,7 @@ Reduir la imatge a %1x%2 pixels? Invalid operating mode specified: - + Especificat mode d'operació invàlid: @@ -18077,32 +17681,32 @@ Reduir la imatge a %1x%2 pixels? opmode - + ModeOp Sets RetroShare's operating mode. - + Canvia el mode d'operació del RetroShare RsLinkURL - + RsLinkURL Open RsLink with protocol retroshare:// - + Obre els enllaços de RS amb protocol retroshare:// Open RsFile with or without arg. - + Obre els enllaços a arxiu RS amb o sense argument. RetroShare GUI Usage Information - + Informació d'ús de la IGU de RetroShare @@ -18668,10 +18272,6 @@ Reduir la imatge a %1x%2 pixels? Network Mode Mode de xarxa - - Nat - NAT - Automatic (UPnP) @@ -18716,7 +18316,7 @@ Reduir la imatge a %1x%2 pixels? NAT - + NAT @@ -18754,15 +18354,11 @@ Reduir la imatge a %1x%2 pixels? Known / Previous IPs: Conegudes / IPs previes: - - Show Discovery information in statusbar - Mostra informació de descobriment a la barra d'estat - 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 desactives això el RetroShare només pot determinar la teva IP quan et connectes amb algú. Deixant això activat ajuda a @@ -18807,7 +18403,7 @@ d'un tallafocs o una VPN. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + S'ha configurat Tor automàticament per part de Retroshare. No hauria de fer falta que canviessis res aquí. @@ -18858,12 +18454,12 @@ d'un tallafocs o una VPN. BOB is running and accessible - + BOB està en funcionament i accessible BOB is not accessible! Is it running? - + No es pot accedir a BOB! Està en funcionament? @@ -18872,111 +18468,117 @@ d'un tallafocs o una VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + RetroShare utilitza BOB per establir a %1 túnel a %2:%3 (anomenat %4) + +Quan es canvien opcions (per exemple el port) utilitza els botons inferiors per reiniciar BOB. + + client - + client server - + servidor unknown - desconegut + desconegut BOB is processing a request - + BOB està processant una petició connectivity check - + comprovació de connectivitat generating key - + generant clau starting up - + iniciant shuting down - + apagant BOB is processing a request: %1 - + BOB està processant una petició: %1 BOB is broken - + BOB està trencat + BOB encountered an error: - + BOB ha trobat un error: + BOB tunnel is running - + El túnel BOB està funcionant BOB is working fine: tunnel established - + BOB funciona correctament: túnel establert BOB tunnel is not running - + El túnel BOB no està funcionant BOB is inactive: tunnel closed - + BOB és inactiu: túnel tancat request a new server key - + demana una clau nova de servidor load server key from base64 - + carrega una clau de servidor de base64 stop BOB tunnel first to generate a new key - + para el túnel BOB per generar abans una clau nova stop BOB tunnel first to load a key - + Para túnel BOB abans per carregar una clau stop BOB tunnel first to disable BOB - + para el túnel BOB abans per desactivar BOB @@ -19031,133 +18633,140 @@ Comprova els teus ports! WARNING: These values don't take into account the Relays. - + AVÍS: +Aquests valors no tenen en compte els Repetidors. 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] -> Next -> 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] -> Next -> 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 configuració 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] -> Següent -> 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? Automatic I2P/BOB - + I2P/BOB automàtic Enable I2P BOB - changing this requires a restart to fully take effect - + Activa I2P BOB - canviar això necessita que reiniciïs per tindre efecte enableds advanced settings - + activar opcions avançades advanced mode - + mode avançat I2P Basic Open Bridge - + Pont Obert I2P Bàsic I2P Instance address - + Adreça instancia I2P 127.0.0.1 - 127.0.0.1 + 127.0.0.1 I2P proxy port - + Port del proxy I2P BOB accessible - + BOB accessible Address - + Adreça .b32.i2p - + .b32.i2p generate new - + generar nou Tunnel length (in/out) - + Longitud del túnel (entrant/sortint) Tunnel quantity (in/out) - + Quantitat de túnels (entrants/sortints) Tunnel variance (in/out) - + Variació de túnels (entrant/sortint) <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + <html><head/><body><p>Clau del servidor - Quan es defineix una clau s'utilitzarà per crear un servei<br/>ocult per l'I2P. Si no, només es crearà un túnel client.</p></body></html> load key - + carrega clau Start - Comença + Començar Restart - + Reiniciar Stop - Atura + Atura BOB status - + Estat del BOB Incoming - Entrants + Entrants <html><head/><body><p>Setup your hidden address (and port if needed)</p></body></html> - + <html><head/><body><p>Configura la teva adreça oculta (i port si és necessari)</p></body></html> @@ -19176,101 +18785,115 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + 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 connectant-te sobre Tor comprova també els registres de Tor. Relay - Repetidor + Repetidor Enable Relay Connections - Activa les connexions de repetidor + Activa les connexions de repetidor Use Relay Servers - Utilitza servidors de repetició + Utilitza servidors de repetició Relay options - Opcions repetició + Opcions del repetidor Number - Número + Número Bandwidth per link - Ample de banda per enllaç + Ample de banda per enllaç Total Bandwidth - Ample de banda total + Ample de banda total Friends - Amics + Amics Friends of Friends - Amics d'amics + Amics dels amics General - General + General Total: - Total: + Total: Warning: This bandwidth adds up to the max bandwidth. - + Avís: Aquest ample de banda es sumarà a l'ample de banda màxim. Relay Server Setup - Configuració de servidor de repetició + Configuració de servidor de repetició Add Server - Afegir servidor + Afegir servidor Server DHT Key - Clau DHT del servidor + Clau DHT del servidor Remove Server - Eliminar servidor + Eliminar servidor - <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>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> - + <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> @@ -19285,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + Activar filtrat per IP @@ -19365,10 +18988,6 @@ If you have issues connecting over Tor check the Tor logs too. 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> @@ -19400,30 +19019,6 @@ If you have issues connecting over Tor check the Tor logs too. 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 - @@ -19460,35 +19055,6 @@ Pots connectar-te a nodes ocults, encara que estiguis en un node estàndard, aix 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 @@ -19540,10 +19106,6 @@ de connexió dels teus amics utilitzant el protocol <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> @@ -19577,12 +19139,12 @@ de connexió dels teus amics utilitzant el protocol Outgoing Manual Tor/I2P - + Tor/I2P sortint manual <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + <html><head/><body><p>Configura el teu proxy SOCKS per Tor i I2P aquí.<br/>Si prefereixes utilitzar BOB per controlar automàticament l'I2P comprova l'altra pestanya.</p></body></html> @@ -19661,7 +19223,7 @@ de connexió dels teus amics utilitzant el protocol Form - Formulari + Formulari @@ -19669,7 +19231,7 @@ de connexió dels teus amics utilitzant el protocol Preferences - + Preferencies @@ -19713,32 +19275,32 @@ Escull els amics amb qui vols compartir el teu canal. Shared directory - + Directori compartit Visible name - + Nombre visible Access - + Accés Visibility - Visibilitat + Visibilitat Add new - + Afegir nou Cancel - Cancel·la + Cancel·la @@ -19763,52 +19325,52 @@ Escull els amics amb qui vols compartir el teu canal. Choose directory - Escull directori + Escull directori Change group visibility... - + Canviar visibilitt del grup... Choose directory to share... - + Escull directori a compartir... Choose visible name... - + Escull nom visible... [Unset] (Double click to change) - + [No establert] (Doble clic per canviar-ho) Double click to select which groups of friends can see the files - + Doble clic per seleccionar quin grup d'amics pot veure aquests arxius Double click to change the name that friends will see. - + Doble clic per canviar el nom que veuen els teus amics. Double click to change shared directory path - + Doble clic per canviar la ruta del directori compartit Directory does not exist! Double click to change shared directory path - + El directori no existeix! Doble clic per canviar la ruta del directori compartit [All friend nodes] - + [Tots els nodes amics] @@ -19823,7 +19385,7 @@ Escull els amics amb qui vols compartir el teu canal. Choose a directory to share - + Escull un directori a compartir @@ -19857,11 +19419,7 @@ Escull els amics amb qui vols compartir el teu canal. Configure shared directories - - - - Search files - Cercar arxius + Configura els directoris compartits @@ -19933,18 +19491,10 @@ Escull els amics amb qui vols compartir el teu canal. Send retroshare Links Enviar enllaç RetroShare - - Send retroshare Links to Cloud - Enviar enllaç RetroShare al núvol - - - Add Links to Cloud - Afegir enllaços al núvol - Some files have been omitted - + Alguns arxius s'han omès @@ -19980,17 +19530,17 @@ Escull els amics amb qui vols compartir el teu canal. Some files have been omitted because they have not been indexed yet. - + Alguns arxius s'han omès perquè encara no han estat indexats. Search string should be at least 3 characters long. - + La cadena de cerca ha de ser com a mínim de 3 caràcters. More than 3000 results. Add more/longer search words to select less. - + Més de 3000 resultats. Afegeix més paraules de cerca o més llargues per acotar el resultat. @@ -20100,10 +19650,6 @@ Escull els amics amb qui vols compartir el teu canal. SplashScreen - - Load profile - Carrega perfil - Load configuration @@ -20122,15 +19668,11 @@ Escull els amics amb qui vols compartir el teu canal. RetroShare RetroShare - - Login - Validació - Password - Contrasenya + Contrasenya @@ -20156,9 +19698,13 @@ La identitat i ubicació actuals no es veuran afectades. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</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:'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;">Nou perfil/node</span></a></p></body></html> @@ -20173,7 +19719,7 @@ p, li { white-space: pre-wrap; } Wrong password - + Contrasenya incorrecta @@ -20182,18 +19728,6 @@ p, li { white-space: pre-wrap; } Warning Aví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:'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"> -<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;">Controlar perfils i nodes...</span></a></p></body></html> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. @@ -20315,7 +19849,7 @@ Això es pot canviar a les opcions de configuració. Gxs Transport - + Transport GXS @@ -20507,7 +20041,7 @@ Això es pot canviar a les opcions de configuració. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20520,7 +20054,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20616,7 +20150,7 @@ p, li { white-space: pre-wrap; } Remove this item - + Esborra aquest element @@ -20771,58 +20305,58 @@ p, li { white-space: pre-wrap; } Dialog - Diàleg + Diàleg Setting up Tor... - + Configura Tor... Tor status: - + Estat Tor: Unknown - Desconegut + Desconegut Not started - + No iniciat Hidden service address: - + Adreça del servei ocult: Tor bootstrap status: - + Estat bootstrap de Tor: Not set - + No configurat Onion address: - + Adreça Onion: Check that Tor is accessible in your executable path - + Comprova que Tor és accessible a les rutes d'executables [Waiting for Tor...] - + [Esperant al Tor...] @@ -20830,28 +20364,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + <p>Aquesta versió de Retroshare utilitza Tor per connectar amb els teus amics.</p> Tor is currently offline - + Tor és fora de línia Tor is OK - + Tor està OK No tor configuration - + Sense configuració Tor @@ -20869,98 +20403,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Directoris compartits Automatically share incoming directory (Recommended) - Compartir automàticament directori entrant (recomanat) + Compartir automàticament directori entrant (recomanat) Edit Share - + Editar compartits Auto-check shared directories every - + Auto-comprova els directoris compartits cada minute(s) - + minut(s) <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + <html><head/><body><p>Li diu al Retroshare de seguir els enllaços. Els duplicats i bucles es tractaran automàticament. Si es desactiva, el Retroshare simplement ignorarà els enllaços simbòlics a arxius i directoris.</p></body></html> follow symbolic links - + seguir enllaços simbòlics <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + <html><head/><body><p>Seguint enllaços simbòlics, Retroshare pot arribar al mateix directori/Arxiu més d'un cop. Activant-ho, Retroshare ignorarà completament l'arxiu. Això evita que Retroshare entri en bucles quan indexa.</p></body></html> Ignore duplicate files/directories - + Ignora arxius/directoris duplicats Maximum depth (0=unlimited): - + Profunditat màxima (0=il·limitada): <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + <html><head/><body><p>Aquest valor et permet limitar la profunditat de la jerarquia de directoris que s'està indexant, començant al directori base. Si permets que Retroshare segueixi enllaços simbòlics i no marques &quot;Ignorar arxius/directoris duplicats&quot;, aquesta opció evitarà que Retroshare entri en bucles infinits mentre indexa els directoris.</p></body></html> Ignore files ending with: - + Ignorar arxius que acabin amb: <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + <html><head/><body><p>Escriu els sufixes que vulguis separats per &quot;;&quot; per exemple &quot;~;.bak;.old&quot;</p></body></html> ignore files starting with: - + Ignorar arxius que comencin per: <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + <html><head/><body><p>Escriu els prefixos, separats per &quot;;&quot; per exemple &quot;.;~&quot;</p></body></html> Incoming Directory - + Directori d'entrants Browse - Navegar + Navegar Partials Directory - + Directori de parcials Maximum uploads per friend (0 = no limit) - + Màxim de pujades simultànies per amic (0 = il·limitades) @@ -20975,12 +20509,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Encriptació d'extrem a extrem Allow direct download: - + Permetre descarregues directes: @@ -21005,50 +20539,58 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + <html><head/><body><p>Els túnels anònims poder ser encriptats d'extrem a extrem. Per tal de mantenir compatibilitat amb versions anteriors, això pot configurar-se com opcional (escollint &quot;Acceptat&quot;), però al final, tots els nodes de Retroshare es canviaran a encriptació d'extrem a extrem. Escollint &quot;Acceptat&quot;, és probable que les transferències es facin utilitzant el doble de túnels, donat que no hi ha forma de saber que les peticions de diferents tipus de túnel venen d'un mateix node.</p></body></html> Accepted - + Acceptat Enforced - + Obligatori <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + <html><head/><body><p>Preferències de com RS controla les descarregues directes.</p></body></html> Yes - + No - No + No Per user - + Per usuari <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Retroshare</span><span style=" font-size:8pt;"> és capaç de transferir dades i peticions de cerca entre contactes que no necessàriament siguin amics. No obstant, aquest tràfic només passa entre els amics connectats i és anònima.</span></p> +<p style="-qt-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;"><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-size:8pt;">Pots especificar per separat els permisos de compartició per cada directori compartit a la finestra d'arxius compartits:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Navegables pels amics:</span>: Els arxius són vistos pels teus amics.</li> +<li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Compartits anònimament</span>: Els arxius es poden descarregar a través de túnels anònims distants.</li></ul></body></html> @@ -21075,17 +20617,17 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tú Set Incoming Directory - + Establir el directori d'entrants Set Partials Directory - + Establir directori de parcials Files - Arxius + Arxius @@ -21147,21 +20689,6 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tú Completed Completat - - Speed - i.e: Download speed - Velocitat - - - Progress / Availability - i.e: % downloaded - Progrés / Disponibilitat - - - Sources - i.e: Sources - Fonts - Status @@ -21177,16 +20704,6 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tú Remaining Restant - - Download time - i.e: Estimated Time of Arrival / Time left - Temps de descarrega - - - Peer - i.e: user name - Contacte - Progress @@ -21241,7 +20758,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tú Peer i.e: user name / tunnel id - Contacte + Contacte @@ -21390,76 +20907,16 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tú Choose directory Escull directori - - Failed - Fallat - - - Okay - Correcte - - - Waiting - Esperant - - - Downloading - Descarregant - - - Complete - Complet - - - Queued - En cua - - - Paused - Pausat - - - Checking... - Comprovant... - - - Unknown - Desconegut - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Si el número de hash de les dades descarregades no es correspon amb l'anunciat per la font de l'arxiu és probable que les dades siguin corruptes. -El RetroShare demanarà a la font un mapa detallat de les dades; Compararà i invalidarà els fragments dolents i els tornarà a descarregar. - -Tingues paciència! - - - Transferring - Transferint - - - Uploading - Pujant - Anonymous end-to-end encrypted tunnel 0x - + Túnel anònim encriptat d'extrem a extrem 0x Tunnel - + Túnel @@ -21519,15 +20976,6 @@ Tingues paciència! Please enter a new--and valid--filename 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 - - - UserID - IdUsuari - @@ -21635,11 +21083,6 @@ Tingues paciència! File Transfers Transferències d'arxius - - Path - i.e: Where file is saved - Ruta - Path @@ -21683,21 +21126,17 @@ Tingues paciència! %1 tunnels - + %1 túnels Anonymous tunnel 0x Túnel anònim 0x - - version: - versió: - Files - Arxius + Arxius @@ -21729,7 +21168,7 @@ Tingues paciència! Empty - + Buit @@ -21740,7 +21179,7 @@ Tingues paciència! Friends Directories [updating...] - + Directoris dels amics [actualitzant...] @@ -21750,7 +21189,7 @@ Tingues paciència! My Directories [updating...] - + Els meus directoris [actualitzant...] @@ -21760,7 +21199,7 @@ Tingues paciència! # Files - + # Arxius @@ -21780,22 +21219,22 @@ Tingues paciència! Access - + Accés Visibility - Visibilitat + Visibilitat Column %1 - + Columna %1 Row %1 - + Fila %1 @@ -21844,7 +21283,7 @@ Tingues paciència! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Id petició: %1 Fa %3 seg. de %2 %4 (%5 cops) @@ -22092,38 +21531,22 @@ Tingues paciència! Port: - Port: + Port: Allow access from all IP addresses (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 activate the web interface. - - - - Port : - Port : - - - 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. + 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. @@ -22777,134 +22200,134 @@ Tingues paciència! Do you accept connections signed by this profile? - + Acceptes connexions signades amb aquest perfil? Name of the profile - + Nom del perfil This column indicates trust level and whether you signed the profile PGP key - + Aquesta columna indica el nivell de confiança i si has signat la clau de perfil PGP Did that peer sign your own profile PGP key - + El contacte ha signat la teva clau de perfil PGP PGP Key Id of that profile - + Id de la clau PGP d'aquest perfil Last time this key was used (received time, or to check connection) - + L'últim cop que aquesta clau va ser utilitzada (hora de recepció o comprovació de connexió) Connections - + Connexions Profile - + Perfil Trust level - Nivell de confiança + Nivell de confiança Has signed your key? - + Ha signat la teva clau? Id - + Id Last used - Últim utilitzat + Últim utilitzat Personal signature - Signatura personal + Signatura personal Marginally trusted peer - Contacte de poca confiança + Contacte de poca confiança Fully trusted peer - Contacte de confiança plena + Contacte de confiança plena Untrusted peer - Contacte no de confiança + Contacte no de confiança Yes - + No - No + No Last hour - Última hora + Última hora Today - Avui + Avui Never - Mai + Mai %1 days ago - fa %1 dies + fa %1 dies Accepted - + Acceptat - - + - PGP key signed by you - Clau PGP signada per tu + Clau PGP signada per tu has authenticated you. Right-click and select 'make friend' to be able to connect. - t'ha autenticat. + t'ha autenticat. Botó dret i selecciona 'fer amic' per poder connectar-hi. - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_cs.qm b/retroshare-gui/src/lang/retroshare_cs.qm index 27849e246..f19451f19 100644 Binary files a/retroshare-gui/src/lang/retroshare_cs.qm and b/retroshare-gui/src/lang/retroshare_cs.qm differ diff --git a/retroshare-gui/src/lang/retroshare_cs.ts b/retroshare-gui/src/lang/retroshare_cs.ts index 7b53c3e70..b8a70634b 100644 --- a/retroshare-gui/src/lang/retroshare_cs.ts +++ b/retroshare-gui/src/lang/retroshare_cs.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + @@ -28,7 +26,7 @@ About - O programu + @@ -36,52 +34,52 @@ Form - Formulář + About - O programu + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - O RetroShare + Have fun ;-) - + Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Promiňte nemohu určit výchozí systémový program či příkaz asociovaný s tímto typem souboru @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -540,7 +538,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + @@ -625,47 +623,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + @@ -680,7 +678,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + @@ -695,17 +693,17 @@ p, li { white-space: pre-wrap; } Main page items: - + Buttons - + Item list - + @@ -935,12 +933,12 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Average - Průměr + Total - + @@ -1031,7 +1029,7 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Friend: - + @@ -1061,17 +1059,17 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Legend: - + Current - + Total - + @@ -1109,14 +1107,10 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo ChatLobbyDialog - - Participants - Účastníci - Name - + @@ -1131,7 +1125,7 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Ban this person (Sets negative opinion) - + @@ -1168,10 +1162,6 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Topic: %1 Téma: %1 - - Lobby management - Správa místnosti - %1 changed his name to: %2 @@ -1200,38 +1190,38 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + @@ -1271,29 +1261,29 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1309,7 +1299,7 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Chats - + @@ -1364,106 +1354,106 @@ Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každo Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - Kopírovat RetroShare odkaz + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1539,17 +1529,17 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + @@ -1608,7 +1598,7 @@ Double click a chat room to enter and chat. Chats - + @@ -1741,12 +1731,12 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - Načíst vložené obrázky + @@ -1761,7 +1751,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + @@ -1781,12 +1771,12 @@ Double click a chat room to enter and chat. Use a single tabbed window - + Blink window/tab icon - + @@ -1819,14 +1809,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1843,7 +1833,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1893,16 +1883,12 @@ Double click a chat room to enter and chat. UserName - + /me is sending a message with /me - - - - Chat - Chat + @@ -2012,7 +1998,7 @@ Double click a chat room to enter and chat. Chats - + @@ -2094,7 +2080,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2104,7 +2090,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2160,48 +2146,48 @@ Double click a chat room to enter and chat. Quote - Citovat + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2212,18 +2198,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2258,11 +2244,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Odeslaná zpráva bude doručena až kontakt bude opět připojený k síti. + @@ -2350,18 +2332,18 @@ after HTML conversion. Person id: - + Double click on it to add his name on text writer. - + Unsigned - + @@ -2546,10 +2528,6 @@ Double click on it to add his name on text writer. Details Detaily - - Peer Address - Adresa protějšku - @@ -2564,12 +2542,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2582,10 +2560,6 @@ Double click on it to add his name on text writer. Port Port - - Addresses list - Seznam adres - Include signatures @@ -2615,10 +2589,6 @@ Double click on it to add his name on text writer. Not connected Nespojen - - Peer Addresses - Adresy kontaktu - Retroshare node details @@ -2652,17 +2622,17 @@ Double click on it to add his name on text writer. Name: - Jméno: + Status message: - + List of known addresses: - + @@ -2752,7 +2722,7 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2778,17 +2748,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + @@ -2873,42 +2843,42 @@ Double click on it to add his name on text writer. RetroShare is better with Friends - + Invite your Friends from other Networks to RetroShare. - + GMail - + Yahoo - + Outlook - + AOL - + Yandex - + Email - Email + @@ -2976,7 +2946,7 @@ Double click on it to add his name on text writer. 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. - + @@ -2993,47 +2963,47 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + @@ -3092,7 +3062,7 @@ resources. <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> - + @@ -3183,12 +3153,12 @@ resources. Certificate appears to be valid - + Not a valid Retroshare certificate! - + @@ -3201,31 +3171,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + @@ -3364,37 +3334,37 @@ RetroShare neaspiruje na to být nejlepší sociální sítí, má své mouchy a IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + @@ -3409,7 +3379,7 @@ RetroShare neaspiruje na to být nejlepší sociální sítí, má své mouchy a The text below is your Retroshare certificate. You have to provide it to your friend - + @@ -3594,13 +3564,13 @@ které nemáte přímo v kontaktech. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3964,26 +3934,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Prosím zopakujte import kompletního certifikátu - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - @@ -4046,12 +3996,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4077,17 +4027,17 @@ p, li { white-space: pre-wrap; } Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4102,47 +4052,47 @@ p, li { white-space: pre-wrap; } Name: - Jméno: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Soukromé + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4217,28 +4167,28 @@ p, li { white-space: pre-wrap; } Circle name - + Update - + Close - Zavřít + Create New Circle - + Create - Vytvořit + @@ -4248,12 +4198,12 @@ p, li { white-space: pre-wrap; } Add Member - + Remove Member - + @@ -4267,12 +4217,12 @@ p, li { white-space: pre-wrap; } Group Name: - Jméno skupiny: + Group ID: - + @@ -4282,7 +4232,7 @@ p, li { white-space: pre-wrap; } To be defined - + @@ -4319,9 +4269,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4443,7 +4393,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + @@ -4502,7 +4452,7 @@ p, li { white-space: pre-wrap; } Edit Message - + @@ -4534,13 +4484,13 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4550,12 +4500,12 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + @@ -4573,16 +4523,6 @@ Do you want to discard this message? 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 @@ -4619,7 +4559,7 @@ Chcete ji zrušit? Visibility: - + @@ -4634,12 +4574,12 @@ Chcete ji zrušit? <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 - + @@ -4659,17 +4599,17 @@ Chcete ji zrušit? Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + @@ -4792,7 +4732,7 @@ Chcete ji zrušit? Friend nodes: - + @@ -4838,7 +4778,7 @@ Chcete ji zrušit? <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> - + @@ -4864,7 +4804,7 @@ Chcete ji zrušit? No peer found in DHT - + @@ -4892,17 +4832,17 @@ Chcete ji zrušit? Faster - Rychleji + Average - Průměr + Slower - Pomaleji + @@ -5023,7 +4963,7 @@ Chcete ji zrušit? ConnectLogic - + @@ -5048,12 +4988,12 @@ Chcete ji zrušit? RsId - + Bucket - + @@ -5124,17 +5064,17 @@ Chcete ji zrušit? IP - IP + Search IP - + Copy %1 to clipboard - + @@ -5350,7 +5290,7 @@ Chcete ji zrušit? Yourself - + @@ -5390,7 +5330,7 @@ Chcete ji zrušit? Relays - + @@ -5483,23 +5423,23 @@ Chcete ji zrušit? Filter: - Filtr: + Search Network - Hledat síť + Peers - Připojení / odpojení + Relay - + @@ -5635,7 +5575,7 @@ Chcete ji zrušit? You this - + @@ -5833,7 +5773,7 @@ Chcete ji zrušit? # Files - + @@ -5863,12 +5803,12 @@ Chcete ji zrušit? Column %1 - + Row %1 - + @@ -5881,17 +5821,13 @@ Chcete ji zrušit? Set message to read on activate - + Expand new messages Rozbalit nové zprávy - - Forum - Fórum - Load embedded images @@ -5900,12 +5836,12 @@ Chcete ji zrušit? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + @@ -5920,7 +5856,7 @@ Chcete ji zrušit? Forums - + @@ -5934,7 +5870,7 @@ Chcete ji zrušit? ID - ID + @@ -5944,33 +5880,33 @@ Chcete ji zrušit? export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + @@ -6018,27 +5954,27 @@ Chcete ji zrušit? Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + @@ -6063,17 +5999,17 @@ Chcete ji zrušit? Send message to this node - + Node details - + Recommend this node to... - + @@ -6099,82 +6035,82 @@ Chcete ji zrušit? 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - Chyba + File is not writeable! - + File is not readable! - + Show Items - + @@ -6227,42 +6163,42 @@ at least one peer was not added to a group Dialog - + Message: - Zpráva: + Recommend friends - Doporučit kontakty + To - + 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 + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6293,12 +6229,12 @@ at least one peer was not added to a group Sort by state - + Filter only connected - + @@ -6313,12 +6249,12 @@ at least one peer was not added to a group Mark all - Označit vše + Mark none - + @@ -6420,7 +6356,7 @@ at least one peer was not added to a group <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> - + @@ -6461,14 +6397,6 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters Všechny prvky vyžadují zadání alespoň tří znaků. - - Password (check) - Heslo (ověření) - - - [Required] Type the same password again here. - [Požadováno] Zopakujte heslo. - Passwords do not match @@ -6482,7 +6410,7 @@ at least one peer was not added to a group Use BOB - + @@ -6490,19 +6418,11 @@ at least one peer was not added to a group This password is for PGP Heslo pro PGP - - Generate new node - Generovat 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 - Node field is required with a minimum of 3 characters @@ -6513,99 +6433,81 @@ at least one peer was not added to a group 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. - Options - + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - Textový popisek + @@ -6616,7 +6518,7 @@ Případně můžete použít již existující - jednoduše odznačte "Vyt hidden address - + @@ -6628,25 +6530,11 @@ Případně můžete použít již existující - jednoduše odznačte "Vyt <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> - - PGP key length - Délka PGP klíče - Click to create your node and/or profile Klikni pro vytvoření node nebo profilu - - Generate new profile and node - Vytvořit nový profil a node - - - 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" - Export profile @@ -6694,62 +6582,62 @@ a vytvořit nový node využívající stejný profil. Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + @@ -6764,40 +6652,40 @@ a vytvořit nový node využívající stejný profil. New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6850,7 +6738,7 @@ a vytvořit nový node využívající stejný profil. Register retroshare:// as URL protocol - + @@ -6860,22 +6748,22 @@ a vytvořit nový node využívající stejný profil. When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6895,22 +6783,22 @@ a vytvořit nový node využívající stejný profil. You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6936,7 +6824,7 @@ a vytvořit nový node využívající stejný profil. Minimize to Tray Icon - + @@ -6958,7 +6846,7 @@ a vytvořit nový node využívající stejný profil. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6991,7 +6879,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:'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> @@ -7003,31 +6891,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> @@ -7040,7 +6928,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> - + @@ -7052,11 +6940,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7155,7 +7043,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne It has many features, including built-in chat, messaging, - + @@ -7168,62 +7056,62 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne GroupBox - + ID - ID + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - Detaily + @@ -7233,12 +7121,12 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Pending packets - + Unknown - + @@ -7246,22 +7134,22 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7277,7 +7165,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne [Unknown] - + @@ -7313,72 +7201,72 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7391,7 +7279,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Hide tabbar with one open tab - + @@ -7399,7 +7287,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Share - + @@ -7409,37 +7297,37 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7462,17 +7350,17 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Search Description - + Sort Descending Order - + Sort Ascending Order - + @@ -7492,33 +7380,33 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Poslední příspěvek + Never - Nikdy + @@ -7528,7 +7416,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Subscribe to download and read messages - + @@ -7655,7 +7543,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7675,7 +7563,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Select channel download directory - + @@ -7685,18 +7573,18 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Set download directory - + [Default directory] - + Specify... - Zvolit... + @@ -7719,7 +7607,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Open folder - + @@ -7739,17 +7627,17 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7777,7 +7665,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Published - + @@ -7805,17 +7693,17 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Add Channel Admins - + Select Channel Admins - + Update Channel - + @@ -7867,12 +7755,12 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne New Comment: - + Comment Value - + @@ -7899,7 +7787,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Edit - Editovat + @@ -7940,7 +7828,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + @@ -7955,7 +7843,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne 0 - 0 + @@ -7966,12 +7854,12 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne I like this - + I dislike this - + @@ -7981,7 +7869,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Comments - + @@ -8010,7 +7898,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Add new post - + @@ -8020,7 +7908,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Search channels - + @@ -8040,7 +7928,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Search Message - + @@ -8050,7 +7938,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Search Filename - + @@ -8060,32 +7948,32 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Never - Nikdy + Public - Veřejné + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -8100,33 +7988,33 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - neznámé + Distribution: - + @@ -8141,7 +8029,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Subscribers - + @@ -8151,7 +8039,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Posts (at neighbor nodes): - + @@ -8167,48 +8055,48 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Details - Detaily + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8216,7 +8104,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Comment Container - + @@ -8229,7 +8117,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Hot - + @@ -8244,12 +8132,12 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Voter ID: - + Refresh - + @@ -8274,17 +8162,17 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne UpVotes - + DownVotes - + OwnVote - + @@ -8302,7 +8190,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Copy Comment - + @@ -8320,32 +8208,32 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8368,17 +8256,17 @@ before you can comment Update Forum - + Add Forum Admins - + Select Forum Admins - + @@ -8457,7 +8345,7 @@ before you can comment In Reply to: - + @@ -8467,7 +8355,7 @@ before you can comment Forum Feed - + @@ -8500,7 +8388,7 @@ before you can comment New Thread - + @@ -8534,7 +8422,7 @@ before you can comment Save image - + @@ -8595,7 +8483,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> - + @@ -8660,54 +8548,54 @@ before you can comment [Banned] - + [unknown] - + Public - Veřejné + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + @@ -8732,22 +8620,22 @@ 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> - + @@ -8790,127 +8678,127 @@ before you can comment New thread - + Read status - + Edit - Editovat + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - Nikdy + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8935,17 +8823,17 @@ prevents the message to be forwarded to your friends. Forum name - + Subscribers - + Posts (at neighbor nodes) - + @@ -8955,7 +8843,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8971,7 +8859,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -9034,17 +8922,17 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + @@ -9065,7 +8953,7 @@ prevents the message to be forwarded to your friends. Message Distribution - + @@ -9078,7 +8966,7 @@ prevents the message to be forwarded to your friends. Publish Signatures - + @@ -9088,37 +8976,37 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + @@ -9128,7 +9016,7 @@ prevents the message to be forwarded to your friends. Allow Comments - + @@ -9138,29 +9026,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Komentáře: + TextLabel - Textový popisek + Distribution: - + Anti Spam: - + @@ -9171,45 +9059,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - Nikdy + Only friends nodes in group - + @@ -9219,43 +9107,43 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + @@ -9270,52 +9158,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9325,7 +9213,7 @@ prevents the message to be forwarded to your friends. Posts - + @@ -9335,7 +9223,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9378,69 +9266,69 @@ prevents the message to be forwarded to your friends. Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9468,7 +9356,7 @@ prevents the message to be forwarded to your friends. No Signature - + @@ -9486,55 +9374,55 @@ prevents the message to be forwarded to your friends. Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9555,107 +9443,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Statistiky směrovače + GroupBox - + ID - ID + Destination - Výstup + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Přihlášen + Popularity - Popularita + Details - Detaily + Unknown Peer - + Pending data items - + Unknown - + Yes - Ano + No - Ne + @@ -9663,42 +9551,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9751,7 +9639,7 @@ prevents the message to be forwarded to your friends. Whole words only - + @@ -9761,7 +9649,7 @@ prevents the message to be forwarded to your friends. Help Topics - + @@ -9772,12 +9660,12 @@ prevents the message to be forwarded to your friends. Searching for: - + Found Documents - + @@ -9834,7 +9722,7 @@ prevents the message to be forwarded to your friends. Search for a word or phrase on current page (Ctrl+F) - + @@ -9849,7 +9737,7 @@ prevents the message to be forwarded to your friends. Close Vidalia Help - + @@ -9859,17 +9747,17 @@ prevents the message to be forwarded to your friends. Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + @@ -9879,13 +9767,13 @@ prevents the message to be forwarded to your friends. Found %1 results - + Error Loading Help Contents: - + @@ -9900,21 +9788,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9936,18 +9824,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -9961,12 +9849,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9999,7 +9887,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - + @@ -10007,114 +9895,114 @@ p, li { white-space: pre-wrap; } Form - Formulář + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - Kopírovat váš certifikát do schránky + Save your Cert into a File - Uložit váš certifikát do souboru + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - Pozvánka do RetroShare + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Váš certifikát byl zkopírován do schránky, vložte ho do zprávy kterou pošlete vašemu kontaktu emailem či jiným způsobem. + Save as... - Uložit jako... + RetroShare Certificate (*.rsc );;All Files (*) - Certifikát RetroShare (*.rsc); Všechny soubory (*) + Home - Domů + @@ -10123,32 +10011,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10158,206 +10046,206 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10371,7 +10259,7 @@ p, li { white-space: pre-wrap; } Reputation - + @@ -10381,7 +10269,7 @@ p, li { white-space: pre-wrap; } Anonymous Id - + @@ -10391,131 +10279,131 @@ p, li { white-space: pre-wrap; } Create new circle - + Persons - + Votes - + Person - + Close - Zavřít + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - Okruhy lidí + Circle name - + Membership - Členství + Public Circles - Veřejné Kruhy + Personal Circles - Osobní Kruhy + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + @@ -10525,22 +10413,22 @@ p, li { white-space: pre-wrap; } Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10550,57 +10438,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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + @@ -10610,197 +10498,197 @@ p, li { white-space: pre-wrap; } ID - ID + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - Veřejné + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - Status: + Full member - + Invited by admin - + Subscription request pending - + unknown - neznámé + Invited - + Subscription pending - + Member - + Edit Circle - Upravit Kruh + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10808,294 +10696,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Kanály + Forums - + Posted - + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -11103,98 +10991,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11207,38 +11095,38 @@ These identities will soon be not supported anymore. Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11257,32 +11145,32 @@ These identities will soon be not supported anymore. Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11306,7 +11194,7 @@ These identities will soon be not supported anymore. RM - + @@ -11317,32 +11205,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11355,12 +11243,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11372,25 +11260,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11439,17 +11327,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11478,26 +11366,22 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - Doporučit pomocí zprávy + Set command for opening this file - + @@ -11597,7 +11481,7 @@ These identities will soon be not supported anymore. Open Messenger - + @@ -11712,37 +11596,37 @@ These identities will soon be not supported anymore. ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11858,22 +11742,22 @@ These identities will soon be not supported anymore. Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + @@ -11973,17 +11857,17 @@ These identities will soon be not supported anymore. All addresses (mixed) - + All people - + My contacts - + @@ -12233,7 +12117,7 @@ Chcete ji uložit jako koncept? Details - Detaily + @@ -12285,17 +12169,17 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12310,73 +12194,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12399,22 +12283,22 @@ Do you want to save message ? Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + @@ -12461,14 +12345,10 @@ Do you want to save message ? Edit Tag Editovat štítek - - Message - Zpráva - Distant messages: - + @@ -12478,7 +12358,7 @@ Do you want to save message ? Mail - + @@ -12486,7 +12366,7 @@ Do you want to save message ? Sub: - + @@ -12542,7 +12422,7 @@ Do you want to save message ? Send Invite - + @@ -12572,7 +12452,7 @@ Do you want to save message ? Confirm %1 as friend - + @@ -12592,12 +12472,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -12623,17 +12503,17 @@ Do you want to save message ? Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12720,27 +12600,27 @@ Do you want to save message ? Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + @@ -12910,27 +12790,27 @@ Do you want to save message ? Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + @@ -13057,7 +12937,7 @@ 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> - + @@ -13154,7 +13034,7 @@ Do you want to save message ? This message goes to a distant person. - + @@ -13173,27 +13053,27 @@ Do you want to save message ? Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13219,17 +13099,17 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13239,7 +13119,7 @@ Do you want to save message ? Paste my certificate link - + @@ -13247,7 +13127,7 @@ Do you want to save message ? Send Invite - + @@ -13283,12 +13163,12 @@ Do you want to save message ? from - + Reply to invite - + @@ -13298,17 +13178,17 @@ Do you want to save message ? Sent Msg - + Draft Msg - + Pending Msg - + @@ -13318,12 +13198,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13396,18 +13276,6 @@ Do you want to save message ? Name Jméno uživatele - - Did I authenticated peer - Jak moc mu důvěřuji - - - Did I sign his PGP key - Podepsal jsem PGP klíč kontaktu? - - - Cert Id - ID certifikátu - Clear @@ -13476,27 +13344,27 @@ Do you want to save message ? Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13504,93 +13372,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - - Personal signature - Osobní podpis - - - PGP key signed by you - Vámi podepsaný PGP klíč - - - Marginally trusted peer - Částečně - - - Fully trusted peer - Úplně - - - Untrusted peer - Vůbec - - - Never - Nikdy - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - vám důvěřuje. Abyste mohli s kontaktem spojit, klikněte -na něj pravým tlačítkem myši a zvolte 'Důvěřovat'. - - - yourself - tohle jste vy + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13621,7 +13455,7 @@ Reported error: Freeze - + @@ -13657,7 +13491,7 @@ Reported error: Log entries - + @@ -13677,22 +13511,22 @@ Reported error: Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13731,12 +13565,12 @@ Reported error: Chat Room - + Systray Icon - + @@ -13763,32 +13597,32 @@ Reported error: Ip security - + Friend Connected - se připojil. + Circles - Okruhy lidí + Links - + Mails - + Chats - + @@ -13813,32 +13647,32 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Citlivost velikost písmen + @@ -13858,7 +13692,7 @@ Reported error: Systray message - + @@ -13868,17 +13702,17 @@ Reported error: Combined - + Blink - + <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> - + @@ -13908,12 +13742,12 @@ Reported error: Disable All Toasters - + Disable All Toaster temporarily - + @@ -13923,12 +13757,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13936,17 +13770,17 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + @@ -13956,7 +13790,7 @@ Reported error: Please enter your Retroshare passphrase - + @@ -13971,7 +13805,7 @@ Reported error: Please check your system clock. - + @@ -14001,18 +13835,18 @@ Reported error: Unknown title - + Encrypted message - + 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). - + @@ -14047,22 +13881,22 @@ Reported error: - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14070,42 +13904,42 @@ Reported error: Dialog - + Profile info - + Name : - Jméno : + 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: - + <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 - + @@ -14115,7 +13949,7 @@ Reported error: No trust - + @@ -14135,46 +13969,46 @@ Reported error: This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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> - + @@ -14184,32 +14018,32 @@ p, li { white-space: pre-wrap; } <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14219,53 +14053,53 @@ p, li { white-space: pre-wrap; } Options - + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - Stahovat přímo od pokud možno + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14285,29 +14119,29 @@ p, li { white-space: pre-wrap; } The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + @@ -14327,22 +14161,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14357,22 +14191,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14449,7 +14283,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14479,7 +14313,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14535,53 +14369,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14589,68 +14423,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14666,12 +14500,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + @@ -14701,7 +14535,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Photo Title: - + @@ -14721,7 +14555,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Write a comment... - + @@ -14741,16 +14575,16 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14763,9 +14597,9 @@ 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: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> - + @@ -14783,48 +14617,48 @@ p, li { white-space: pre-wrap; } View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14837,28 +14671,28 @@ requesting to edit it! Image - + Show/Hide Details - + << - + Stop - + >> - + @@ -14868,17 +14702,17 @@ requesting to edit it! Start - + Start Slide Show - + Stop Slide Show - + @@ -14899,21 +14733,21 @@ requesting to edit it! Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14923,17 +14757,17 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + @@ -14953,7 +14787,7 @@ p, li { white-space: pre-wrap; } File hash: - + @@ -14963,7 +14797,7 @@ p, li { white-space: pre-wrap; } will be enabled after your restart RetroShare. - + @@ -14971,37 +14805,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -15024,7 +14858,7 @@ p, li { white-space: pre-wrap; } Widget for plugin %1 not found on plugins frame - + @@ -15042,17 +14876,17 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -15061,37 +14895,37 @@ 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. - + Unknown status. - + @@ -15099,12 +14933,12 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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> - + @@ -15155,7 +14989,7 @@ malicious behavior of crafted plugins. Dock tab - + @@ -15181,32 +15015,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15214,12 +15048,12 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + @@ -15229,32 +15063,32 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + @@ -15264,7 +15098,7 @@ malicious behavior of crafted plugins. Link - + @@ -15277,37 +15111,37 @@ 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15315,32 +15149,32 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + @@ -15353,7 +15187,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15369,7 +15203,7 @@ malicious behavior of crafted plugins. Posted Description - + @@ -15379,7 +15213,7 @@ malicious behavior of crafted plugins. New Posted - + @@ -15392,12 +15226,12 @@ malicious behavior of crafted plugins. 0 - 0 + Site - + @@ -15415,17 +15249,17 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + \/ - + @@ -15440,12 +15274,12 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + @@ -15465,7 +15299,7 @@ malicious behavior of crafted plugins. By - + @@ -15478,7 +15312,7 @@ malicious behavior of crafted plugins. Hot - + @@ -15493,32 +15327,32 @@ malicious behavior of crafted plugins. Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + @@ -15533,17 +15367,17 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + Previous - + 1-10 - 1-10 + @@ -15556,12 +15390,12 @@ malicious behavior of crafted plugins. Open each topic in a new tab - + Links - + @@ -15569,7 +15403,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15577,7 +15411,7 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + @@ -15592,22 +15426,22 @@ malicious behavior of crafted plugins. Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15616,20 +15450,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15644,7 +15478,7 @@ p, li { white-space: pre-wrap; } GID - + @@ -15689,7 +15523,7 @@ tam ji importujte. Import Identity - + @@ -15714,22 +15548,22 @@ tam ji importujte. Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + @@ -15748,12 +15582,12 @@ tam ji importujte. Copy Certificate - + Profile Manager - + @@ -15778,12 +15612,12 @@ tam ji importujte. Number of Friends: - + Version: - + @@ -15798,27 +15632,27 @@ tam ji importujte. My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + @@ -15842,51 +15676,51 @@ tam ji importujte. Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15896,7 +15730,7 @@ tam ji importujte. Post Pulse to Wire - + @@ -15930,52 +15764,44 @@ tam ji importujte. Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - - - - Add file - Přidat soubor - - - Add files - Přidat soubory + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16070,82 +15896,82 @@ and open the Make Friend Wizard. Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + @@ -16161,7 +15987,7 @@ and open the Make Friend Wizard. Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + @@ -16171,12 +15997,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Unable to make path - + Unable to make path: - + @@ -16206,12 +16032,12 @@ 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. - + 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> - + @@ -16227,7 +16053,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + @@ -16237,36 +16063,36 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16279,29 +16105,29 @@ The error reported is:" Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16309,306 +16135,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - Předmět: + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + This cert is malformed. Error code: - + The following has not been added to your download list, because you already have it: - + Error - Chyba + unable to parse XML file! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16623,12 +16449,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16637,7 +16463,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> - + @@ -16659,7 +16485,7 @@ p, li { white-space: pre-wrap; } For best performance, RetroShare needs to know a little about your connection to the internet. - + @@ -16670,17 +16496,17 @@ p, li { white-space: pre-wrap; } KB/s - + Choose your upload speed limit: - + Connection : - + @@ -16695,12 +16521,12 @@ p, li { white-space: pre-wrap; } Manually forwarded port - + Discovery : - + @@ -16728,17 +16554,17 @@ 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; } -</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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16761,12 +16587,12 @@ p, li { white-space: pre-wrap; } Network Wide - + Browseable - + @@ -16786,60 +16612,60 @@ 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; } -</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + @@ -16849,7 +16675,7 @@ p, li { white-space: pre-wrap; } Finish - + @@ -16869,22 +16695,22 @@ p, li { white-space: pre-wrap; } Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16892,12 +16718,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - Opravdu chcete přestat sdílet tento adresář? + @@ -16928,12 +16754,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16941,52 +16767,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16994,17 +16820,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -17022,58 +16848,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Enable Relay Connections - Zapnout zprostředkování spojení - - - Use Relay Servers - Používat servery pro zprostředkování spojení - - - Relay options - Nastavení zprostředkování - - - Number - Počet - - - Bandwidth per link - max.rychlost/spojení - - - Total Bandwidth - Celková maximální rychlost - - - Friends - Kontakty - - - kB/s - kB/s - - - Friends of Friends - Kontakty kontaktů - - - General - Obecné - - - Total: - Celkem: - - - Server DHT Key - DHT klíč serveru + @@ -17081,7 +16856,7 @@ p, li { white-space: pre-wrap; } Download... - + @@ -17091,11 +16866,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Doporučit pomocí zprávy + @@ -17108,12 +16879,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + @@ -17123,7 +16894,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + @@ -17131,22 +16902,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -17164,28 +16935,28 @@ p, li { white-space: pre-wrap; } Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -17193,32 +16964,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - Přepsat + Merge - + Cancel - Zrušit + @@ -17241,12 +17012,12 @@ p, li { white-space: pre-wrap; } Destination: - + Right click to change download directory - + @@ -17277,19 +17048,19 @@ p, li { white-space: pre-wrap; } Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17300,22 +17071,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17325,69 +17096,69 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - Zvolit... + Choose directory - Zvolte adresář + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17397,47 +17168,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17478,15 +17249,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 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. - - - - Overwrite - Přepsat - - - Cancel - Zrušit + @@ -17495,128 +17258,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - + Size i.e: file size - Velikost + Completed - Dokončeno + Speed i.e: Download speed - Rychlost + Progress / Availability i.e: % downloaded - Postup / Dostupnost + Sources i.e: Sources - Zdroje + Status - Status + Speed / Queue position - Rychlost / Umístění ve frontě + Remaining - Zbývá + Download time i.e: Estimated Time of Arrival / Time left - Doba stahování + Hash - Kontrolní součet + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - Cesta + Failed - Selhalo + Okay - Oukej + Waiting - Čekám + Downloading - Stahuji + Complete - Dokončit + Queued - Ve frontě + Paused - Pozastaveno + Checking... - Kontroluji... + Unknown - - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Obrázek je na odeslání příliš velký. -Chcete změnit jeho velikost na %1x%2 pixelů? + @@ -17624,7 +17378,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? Invalid format - + @@ -17643,7 +17397,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? filename - + @@ -17653,7 +17407,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? level - + @@ -17663,7 +17417,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? style - + @@ -17673,7 +17427,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? stylesheet - + @@ -17683,17 +17437,13 @@ Chcete změnit jeho velikost na %1x%2 pixelů? language - + Sets RetroShare's language. Nastaví použitý jazyk. - - RetroShare Usage Information - Informace o použití RetroShare. - Unable to open log file '%1': %2 @@ -17703,7 +17453,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? Invalid operating mode specified: - + @@ -17713,57 +17463,57 @@ Chcete změnit jeho velikost na %1x%2 pixelů? Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17772,7 +17522,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? Registry Access Error. Maybe you need Administrator right. - + @@ -17780,7 +17530,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? RTT Statistics - + @@ -18039,22 +17789,22 @@ Vysoká pravděpodobnost že soubor bude nalezen Open Folder - Otevřít složku + Create Collection... - + Modify Collection... - + View Collection... - + @@ -18088,7 +17838,7 @@ Vysoká pravděpodobnost že soubor bude nalezen IP address: - + @@ -18103,7 +17853,7 @@ Vysoká pravděpodobnost že soubor bude nalezen Peer Name: - + @@ -18120,33 +17870,33 @@ Vysoká pravděpodobnost že soubor bude nalezen but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -18279,27 +18029,27 @@ Vysoká pravděpodobnost že soubor bude nalezen Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18312,7 +18062,7 @@ Vysoká pravděpodobnost že soubor bude nalezen Network Mode - Síťový mod + @@ -18358,7 +18108,7 @@ Vysoká pravděpodobnost že soubor bude nalezen NAT - + @@ -18394,19 +18144,15 @@ Vysoká pravděpodobnost že soubor bude nalezen Known / Previous IPs: - - - - Show Discovery information in statusbar - Zobrazit Discovery informace ve stavovém řádku + 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. - + @@ -18425,84 +18171,84 @@ behind a firewall or a VPN. Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18511,133 +18257,133 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - neznámé + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + @@ -18647,159 +18393,159 @@ Also check your ports! 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - Příchozí + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18813,101 +18559,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - Zapnout zprostředkování spojení + Use Relay Servers - Používat servery pro zprostředkování spojení + Relay options - Nastavení zprostředkování + Number - Počet + Bandwidth per link - max.rychlost/spojení + Total Bandwidth - Celková maximální rychlost + Friends - + Friends of Friends - Kontakty kontaktů + General - Obecné + Total: - Celkem: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - DHT klíč serveru + Remove Server - + - <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>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> - + @@ -18917,23 +18663,23 @@ If you have issues connecting over Tor check the Tor logs too. IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18947,13 +18693,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + @@ -18965,124 +18711,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -19095,82 +18841,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -19183,7 +18929,7 @@ If you have issues connecting over Tor check the Tor logs too. Service Permissions - + @@ -19198,7 +18944,7 @@ If you have issues connecting over Tor check the Tor logs too. Require whitelist - + @@ -19206,7 +18952,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -19221,12 +18967,12 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + @@ -19234,7 +18980,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Formulář + @@ -19242,7 +18988,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -19255,18 +19001,18 @@ If you have issues connecting over Tor check the Tor logs too. Share for Friend - + Share - + 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. - + @@ -19284,32 +19030,32 @@ Select the Friends with which you want to Share your Channel. Shared directory - + Visible name - + Access - + Visibility - Viditelnost + Add new - + Cancel - Zrušit + @@ -19334,52 +19080,52 @@ Select the Friends with which you want to Share your Channel. Choose directory - Zvolte adresář + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19394,7 +19140,7 @@ Select the Friends with which you want to Share your Channel. Choose a directory to share - + @@ -19415,7 +19161,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. - + @@ -19428,11 +19174,7 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - - - - Search files - Hledat soubory + @@ -19504,18 +19246,10 @@ Select the Friends with which you want to Share your Channel. Send retroshare Links Poslat RetroShare odkazy - - Send retroshare Links to Cloud - Poslat RetroShare odkazy do Cloudu - - - Add Links to Cloud - Přidat odkazy do Cloudu - Some files have been omitted - + @@ -19531,17 +19265,17 @@ Select the Friends with which you want to Share your Channel. Create Collection... - + Modify Collection... - + View Collection... - + @@ -19551,17 +19285,17 @@ Select the Friends with which you want to Share your Channel. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19569,48 +19303,48 @@ Select the Friends with which you want to Share your Channel. Friend - Kontakt + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - Stáhnout + Download complete - + Lobby - + @@ -19653,7 +19387,7 @@ Select the Friends with which you want to Share your Channel. Default - Výchozí + @@ -19661,20 +19395,16 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + SplashScreen - - Load profile - Načítám profil - Load configuration @@ -19693,15 +19423,11 @@ Select the Friends with which you want to Share your Channel. RetroShare RetroShare - - Login - Přihlášení - Password - Heslo + @@ -19727,9 +19453,9 @@ Existující identity či lokace to nijak neovlivní. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19744,7 +19470,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -19760,7 +19486,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19769,7 +19495,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19778,7 +19504,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19832,12 +19558,12 @@ This choice can be reverted in settings. ServicePermissions - + Service permissions matrix - + @@ -19852,22 +19578,22 @@ This choice can be reverted in settings. Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19969,7 +19695,7 @@ This choice can be reverted in settings. Connected: I2P - + @@ -19984,57 +19710,57 @@ This choice can be reverted in settings. TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -20054,18 +19780,18 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -20105,12 +19831,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -20155,7 +19881,7 @@ p, li { white-space: pre-wrap; } Remove this item - + @@ -20297,12 +20023,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -20310,58 +20036,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20369,28 +20095,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20398,7 +20124,7 @@ p, li { white-space: pre-wrap; } Transfer options - + @@ -20408,118 +20134,118 @@ p, li { white-space: pre-wrap; } Shared Directories - + Automatically share incoming directory (Recommended) - Automaticky sdílet příchozí adresář (doporučeno) + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - Procházet + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + @@ -20544,85 +20270,85 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Ano + No - Ne + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - Soubory + @@ -20635,22 +20361,22 @@ p, li { white-space: pre-wrap; } You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20684,21 +20410,6 @@ p, li { white-space: pre-wrap; } Completed Dokončeno - - Speed - i.e: Download speed - Rychlost - - - Progress / Availability - i.e: % downloaded - Postup / Dostupnost - - - Sources - i.e: Sources - Zdroje - Status @@ -20714,16 +20425,6 @@ p, li { white-space: pre-wrap; } Remaining Zbývá - - Download time - i.e: Estimated Time of Arrival / Time left - Doba stahování - - - Peer - i.e: user name - Peer - Progress @@ -20778,7 +20479,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Peer + @@ -20819,7 +20520,7 @@ p, li { white-space: pre-wrap; } Clear Completed - + @@ -20900,7 +20601,7 @@ 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> - + @@ -20927,60 +20628,16 @@ p, li { white-space: pre-wrap; } Choose directory Zvolte adresář - - Failed - Selhalo - - - Okay - Oukej - - - Waiting - Čekám - - - Downloading - Stahuji - - - Complete - Dokončit - - - Queued - Ve frontě - - - Paused - Pozastaveno - - - Checking... - Kontroluji... - - - Unknown - Neznámý - - - Transferring - Přenášeno - - - Uploading - Odesíláno - Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + @@ -21060,82 +20717,82 @@ p, li { white-space: pre-wrap; } Show Size Column - + Show Completed Column - + Speed - Rychlost + Show Speed Column - + Progress / Availability - Postup / Dostupnost + Show Progress / Availability Column - + Sources - Zdroje + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - Doba stahování + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + @@ -21145,12 +20802,7 @@ p, li { white-space: pre-wrap; } File Transfers - - - - Path - i.e: Where file is saved - Cesta + @@ -21160,32 +20812,32 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + @@ -21195,17 +20847,17 @@ p, li { white-space: pre-wrap; } %1 tunnels - + Anonymous tunnel 0x - + Files - Soubory + @@ -21220,7 +20872,7 @@ p, li { white-space: pre-wrap; } FILE - + @@ -21237,18 +20889,18 @@ p, li { white-space: pre-wrap; } Empty - + DIR - + Friends Directories [updating...] - + @@ -21258,7 +20910,7 @@ p, li { white-space: pre-wrap; } My Directories [updating...] - + @@ -21268,7 +20920,7 @@ p, li { white-space: pre-wrap; } # Files - + @@ -21288,22 +20940,22 @@ p, li { white-space: pre-wrap; } Access - + Visibility - Viditelnost + Column %1 - + Row %1 - + @@ -21352,7 +21004,7 @@ p, li { white-space: pre-wrap; } Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21383,27 +21035,27 @@ p, li { white-space: pre-wrap; } Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + @@ -21413,7 +21065,7 @@ p, li { white-space: pre-wrap; } Turtle Router - + @@ -21421,47 +21073,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21590,57 +21242,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - Port: + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21783,32 +21435,32 @@ p, li { white-space: pre-wrap; } Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + @@ -21818,12 +21470,12 @@ p, li { white-space: pre-wrap; } New Page - + Refresh - + @@ -21833,32 +21485,32 @@ p, li { white-space: pre-wrap; } My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + @@ -21868,12 +21520,12 @@ p, li { white-space: pre-wrap; } Show Wiki Group - + Edit Wiki Group - + @@ -21881,47 +21533,47 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + @@ -21936,7 +21588,7 @@ p, li { white-space: pre-wrap; } Previous Version - + @@ -21948,7 +21600,7 @@ p, li { white-space: pre-wrap; } Show Edit History - + @@ -21969,39 +21621,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -22009,7 +21661,7 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + @@ -22019,17 +21671,17 @@ p, li { white-space: pre-wrap; } Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + @@ -22039,7 +21691,7 @@ p, li { white-space: pre-wrap; } Update Group - + @@ -22047,7 +21699,7 @@ p, li { white-space: pre-wrap; } TimeRange - + @@ -22058,17 +21710,17 @@ p, li { white-space: pre-wrap; } Last Month - + Last Week - + Today - + @@ -22078,37 +21730,37 @@ p, li { white-space: pre-wrap; } from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + @@ -22118,27 +21770,27 @@ p, li { white-space: pre-wrap; } Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -22147,12 +21799,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -22261,7 +21913,7 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -22269,134 +21921,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - Osobní podpis + Marginally trusted peer - Částečně + Fully trusted peer - Úplně + Untrusted peer - Vůbec + Yes - Ano + No - Ne + Last hour - + Today - + Never - Nikdy + %1 days ago - + Accepted - + - - + PGP key signed by you - Vámi podepsaný PGP klíč + has authenticated you. Right-click and select 'make friend' to be able to connect. - vám důvěřuje. Abyste mohli s kontaktem spojit, klikněte -na něj pravým tlačítkem myši a zvolte 'Důvěřovat'. + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_cy.ts b/retroshare-gui/src/lang/retroshare_cy.ts index 2be68946b..6839bd4e2 100644 --- a/retroshare-gui/src/lang/retroshare_cy.ts +++ b/retroshare-gui/src/lang/retroshare_cy.ts @@ -2,12 +2,13 @@ AWidget - + + Retroshare version - + version @@ -51,7 +52,7 @@ - + Max score: %1 @@ -75,6 +76,11 @@ Have fun ;-) + + + Only Hidden Node + + AddCommentDialog @@ -618,22 +624,22 @@ p, li { white-space: pre-wrap; } - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status @@ -658,17 +664,17 @@ p, li { white-space: pre-wrap; } - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: @@ -795,7 +801,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -906,6 +912,16 @@ p, li { white-space: pre-wrap; } Count + + + Average + + + + + Total + + BwCtrlWindow @@ -993,7 +1009,7 @@ p, li { white-space: pre-wrap; } - + Friend: @@ -1024,6 +1040,21 @@ p, li { white-space: pre-wrap; } + Legend: + + + + + Current + + + + + Total + + + + Log scale @@ -1051,7 +1082,7 @@ p, li { white-space: pre-wrap; } - + Open each channel in a new tab @@ -1059,12 +1090,7 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - - - - + Name @@ -1074,7 +1100,7 @@ p, li { white-space: pre-wrap; } - + Mute participant @@ -1119,14 +1145,7 @@ p, li { white-space: pre-wrap; } - - - - Lobby management - - - - + %1 changed his name to: %2 @@ -1146,7 +1165,7 @@ p, li { white-space: pre-wrap; } - + Start private chat @@ -1181,7 +1200,7 @@ p, li { white-space: pre-wrap; } - + Room chat @@ -1227,7 +1246,14 @@ p, li { white-space: pre-wrap; } + + + Chat room management + + + + %1 joined the room. @@ -1253,7 +1279,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chats @@ -1292,7 +1318,7 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Name @@ -1314,21 +1340,23 @@ p, li { white-space: pre-wrap; } + Public Subscribed chat rooms - + Private chat rooms + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> @@ -1363,12 +1391,17 @@ p, li { white-space: pre-wrap; } - + + Copy RetroShare Link + + + + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. @@ -1390,12 +1423,17 @@ Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + + Choose a non anonymous identity for this chat room: + + + + Choose an identity for this chat room: @@ -1405,7 +1443,7 @@ Double click a chat room to enter and chat. - + [No topic provided] @@ -1416,7 +1454,7 @@ Double click a chat room to enter and chat. - + Private Preifat @@ -1431,7 +1469,7 @@ Double click a chat room to enter and chat. - + Remove Auto Subscribe @@ -1456,7 +1494,7 @@ Double click a chat room to enter and chat. - + Columns @@ -1516,17 +1554,17 @@ Double click a chat room to enter and chat. - + Default identity is anonymous - + No anonymous IDs - + Show @@ -1540,7 +1578,7 @@ Double click a chat room to enter and chat. - + Chats @@ -1775,7 +1813,12 @@ Double click a chat room to enter and chat. - + + Choose your default font for Chat. + + + + Incoming @@ -1829,11 +1872,6 @@ Double click a chat room to enter and chat. /me is sending a message with /me - - - 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> @@ -1920,7 +1958,7 @@ Double click a chat room to enter and chat. - + Private chat invite from @@ -1939,6 +1977,11 @@ Double click a chat room to enter and chat. Valid until : + + + Chats + + ChatStyle @@ -1992,17 +2035,17 @@ Double click a chat room to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -2017,7 +2060,7 @@ Double click a chat room to enter and chat. - + Insert emoticon @@ -2027,12 +2070,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike @@ -2129,12 +2172,12 @@ Double click a chat room to enter and chat. - + is typing... - + It remains %1 characters after HTML conversion. @@ -2146,7 +2189,12 @@ after HTML conversion. - + + Choose your font. + + + + Do you really want to physically delete the history? @@ -2161,7 +2209,7 @@ after HTML conversion. - + Save as... @@ -2177,7 +2225,7 @@ after HTML conversion. - Messages you send will be delivered after Friend is again Online + Messages you send will be delivered after Friend is again Online. @@ -2218,7 +2266,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2233,7 +2281,7 @@ after HTML conversion. - + (Status) @@ -2243,12 +2291,12 @@ after HTML conversion. - + Attach a File - + WARNING: Could take a long time on big history. @@ -2259,12 +2307,28 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + + Person id: + + + + + +Double click on it to add his name on text writer. + + + + + Unsigned + + + + items found. @@ -2279,12 +2343,12 @@ after HTML conversion. - + Type a message here - + Don't stop to color after @@ -2447,59 +2511,58 @@ after HTML conversion. - - Peer Address - - - - - + + Local Address - + External Address - + + Node info: + + + + + Current address: + + + + Dynamic DNS - + Port - - - Addresses list - - - - + Include signatures - - + + RetroShare - - + + Error : cannot get peer details. - + Encryption @@ -2509,22 +2572,12 @@ after HTML conversion. - - Peer Addresses - - - - + Retroshare node details - - Friend info - - - - + Node name : @@ -2559,12 +2612,12 @@ after HTML conversion. - - Connectivity + + List of known addresses: - + Retroshare Certificate @@ -2605,7 +2658,7 @@ after HTML conversion. - + <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> @@ -2648,8 +2701,14 @@ after HTML conversion. - - + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to download RetroShare) + + + + + Include signatures @@ -2669,7 +2728,17 @@ after HTML conversion. - + + Open Cert of your friend from File + + + + + Open certificate + + + + Please, paste your friend's Retroshare certificate into the box below @@ -2794,7 +2863,7 @@ after HTML conversion. - + Invite Friends by Email @@ -2820,15 +2889,15 @@ after HTML conversion. - - + + Friend request - - + + Details about the request @@ -2874,7 +2943,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: @@ -2894,13 +2963,7 @@ resources. - - &Send an Invitation by Email - (Your friend will receive an email with instructions how to to download RetroShare) - - - - + Recommend many friends to each other @@ -2920,12 +2983,12 @@ resources. - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + Add friend to group: @@ -2989,7 +3052,7 @@ resources. - + Abnormal size read is bigger than memory block. @@ -3029,18 +3092,18 @@ resources. - - + + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed @@ -3070,7 +3133,7 @@ resources. - + Certificate appears to be valid @@ -3080,13 +3143,44 @@ resources. - - + + RetroShare Invitation - + + + +Warning: In your File-Transfer option, you select allow direct download to Yes. + + + + + + +Warning: In your File-Transfer option, you select allow direct download to No. + + + + + + + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? + + + + + This key is already on your trusted list + + + + + You have already signed this key + + + + Ultimate @@ -3112,12 +3206,12 @@ resources. - + You have a friend request from - + Certificate Load Failed:file %1 not found @@ -3162,19 +3256,21 @@ resources. - + Save as... - + + RetroShare Certificate (*.rsc );;All Files (*) - + + Select Certificate @@ -3255,17 +3351,17 @@ resources. - + The text below is your Retroshare certificate. You have to provide it to your friend - + Message: - + Recommend friends @@ -3275,7 +3371,7 @@ resources. - + Please select at least one friend for recommendation. @@ -3290,7 +3386,7 @@ resources. - + This key is already in your keyring @@ -3303,7 +3399,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3335,7 +3431,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3345,22 +3441,22 @@ 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 - + Certificate Load Failed:something is wrong with %1 @@ -3373,7 +3469,7 @@ even if you don't make friends. - + Connecting to: @@ -3404,7 +3500,7 @@ even if you don't make friends. - + DHT Startup @@ -3425,7 +3521,7 @@ even if you don't make friends. - + UDP Setup @@ -3435,17 +3531,30 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> + + + + Connection Assistant - + Invalid Peer ID - + Unknown State @@ -3505,7 +3614,7 @@ even if you don't make friends. - + Lookup requires DHT @@ -3531,12 +3640,12 @@ even if you don't make friends. - + Peer Offline - + Peer Firewalled @@ -3546,7 +3655,7 @@ even if you don't make friends. - + Connection In Progress @@ -3797,28 +3906,15 @@ even if you don't make 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-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> - - - - + - - + + N/A - + UNVERIFIABLE FORWARD! @@ -3828,17 +3924,17 @@ p, li { white-space: pre-wrap; } - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. @@ -3869,7 +3965,17 @@ p, li { white-space: pre-wrap; } - + + <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> + + + + + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> + + + + Public Cyhoeddus @@ -3920,22 +4026,12 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - - - - + Contact author: - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - - - - + [Circle Admin] @@ -4125,7 +4221,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4192,7 +4288,7 @@ p, li { white-space: pre-wrap; } - + Paste RetroShare Links @@ -4218,28 +4314,28 @@ p, li { white-space: pre-wrap; } - + Add Extra File - - + + RetroShare - + File already Added and Hashed - + Please add a Subject - + Load thumbnail picture @@ -4255,12 +4351,17 @@ p, li { white-space: pre-wrap; } - + You are about to add files you're not actually sharing. Do you still want this to happen? - + + Edit Channel Post + + + + About to post un-owned files to a channel. @@ -4269,7 +4370,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4314,34 +4415,50 @@ p, li { white-space: pre-wrap; } - + + Edit Message + + + + No Forum - + In Reply to - - + + RetroShare - + Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + + Cancel Forum Message + + + + + Forum Message has not been sent yet! +Do you want to discard this message? + + + + Add Extra File @@ -4367,28 +4484,17 @@ p, li { white-space: pre-wrap; } - + Send - - - Forum Message - - - - - Forum Message has not been Sent. -Do you want to reject this message? - - Post as - + Congrats, you found a bug! @@ -4689,7 +4795,22 @@ Do you want to reject this message? - + + Faster + + + + + Average + + + + + Slower + + + + File Never Seen @@ -5126,7 +5247,7 @@ Do you want to reject this message? - + RELAY END @@ -5276,7 +5397,7 @@ Do you want to reject this message? - + Peers @@ -5531,7 +5652,7 @@ Do you want to reject this message? FilesDefs - + Picture @@ -5605,7 +5726,7 @@ Do you want to reject this message? FlatStyle_RDM - + Friends Directories @@ -5614,6 +5735,11 @@ Do you want to reject this message? My Directories + + + # Files + + Size @@ -5639,6 +5765,16 @@ Do you want to reject this message? Directory + + + Column %1 + + + + + Row %1 + + ForumPage @@ -5658,12 +5794,7 @@ Do you want to reject this message? - - Forum - - - - + Load embedded images @@ -5687,6 +5818,11 @@ Do you want to reject this message? Open each forum in a new tab + + + Forums + + FriendList @@ -5696,7 +5832,13 @@ Do you want to reject this message? - + + + ID + + + + Hide Offline Friends @@ -5727,18 +5869,18 @@ Do you want to reject this message? - + Trusted nodes - + Show Groups - + Group @@ -5748,7 +5890,7 @@ Do you want to reject this message? - + Edit Group @@ -5764,27 +5906,33 @@ Do you want to reject this message? - + Copy certificate link - + Add to group - + + Search - + + Search ID + + + + Sort by state - + Profile details @@ -5839,12 +5987,12 @@ Do you want to reject this message? - + Available - + Do you want to remove this Friend? @@ -5891,34 +6039,29 @@ at least one peer was not added to a group - + Select file for importing your 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! @@ -5930,22 +6073,22 @@ at least one peer was not added to a group - + Show Items - + IP - + Attempt to connect - + Create new group @@ -5955,22 +6098,22 @@ at least one peer was not added to a group - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group @@ -6049,22 +6192,27 @@ at least one peer was not added to a group - + Sort by state + + + Filter only connected + + Name - + Search Friends - + Mark all @@ -6171,12 +6319,12 @@ at least one peer was not added to a group - + <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. @@ -6192,7 +6340,7 @@ at least one peer was not added to a group - + Set your status message here. @@ -6205,107 +6353,69 @@ at least one peer was not added to a group - + Password - + All fields are required with a minimum of 3 characters - - Password (check) - - - - - [Required] Type the same password again here. - - - - + Passwords do not match - + Port - - + + Use BOB + + + + + This password is for PGP - - Generate new node - - - - + You can use it now to create a new node. - - Invalid hidden node - - - - + Node field is required with a minimum of 3 characters - - Generating new node key, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. - -Fill in your password when asked, to sign your new key. - - - - + Failed to generate your new certificate, maybe PGP password is wrong! - - <html><head/><body><p>Use this if you need to import an existing profile, if you want to generate a new node with an already existing key, or if you want to create a TOR/I2P hidden node.</p></body></html> + + Options - - You can create a new profile with this form. -Alternatively you can use an existing profile. Just uncheck "Create a new profile" + + PGP Key Length - - 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. - - - - - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - - - - - No node exists for this profile. - - - - - + + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> @@ -6320,108 +6430,78 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + + Use existing profile + + + + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - - Re-use an existing profile - - - - - Profile name - - - - - Randomness - - - - - Node type - - - - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - - Chat identity - - - - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + + TextLabel + + + + + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - - PGP key length - - - - + Click to create your node and/or profile - - Generate new profile and node - - - - - 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" - - - - + Export profile @@ -6455,38 +6535,13 @@ and use the import button to load it - - + + Import profile - - [Required] Examples: Home, Laptop,...(Visible to friends). - - - - - [Optional] Tor/I2P address (Example: xa76giaf6ifda7ri63i263.onion) - - - - - [Required] Visible to friends, and friends of friends. - - - - - [Optional] Used to write in chat rooms and forums. Can be set later. - - - - - [Required] This password protects your data. Dont forget it! - - - - + Create new profile and new Retroshare node @@ -6496,12 +6551,52 @@ and use the import button to load it - - Disabled until all fields correctly set and enough randomness collected. + + Tor/I2P address - + + Username + + + + + Chat name + + + + + Password again + + + + + <p>Node creation is disabled until all fields correctly set.</p> + + + + + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> + + + + + I2P instance address with BOB enabled + + + + + I2P instance address + + + + + hidden service address + + + + RetroShare profile files (*.asc);;All files (*) @@ -6526,7 +6621,7 @@ and use the import button to load it - + The GXS nickname is too short. Please input at least %1 characters. @@ -6536,12 +6631,7 @@ 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 @@ -6549,12 +6639,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6653,12 +6743,12 @@ and use the import button to load it - You have enough right. + You have sufficient rights. - You don't have enough right. Run RetroShare as Admin to change this setting. + You don't have sufficient rights. Run RetroShare as Admin to change this setting. @@ -6672,7 +6762,7 @@ and use the import button to load it - + Error @@ -6737,18 +6827,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:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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; } @@ -6809,7 +6888,18 @@ 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:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + + + + Advanced: Open Firewall Port @@ -7021,7 +7111,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7237,7 +7327,7 @@ p, li { white-space: pre-wrap; } - Sort by Posts + Sort by Number of Posts @@ -7378,7 +7468,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -7399,12 +7489,12 @@ p, li { white-space: pre-wrap; } - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels @@ -7578,7 +7668,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -7593,12 +7683,12 @@ p, li { white-space: pre-wrap; } - + Loading - + New Channel @@ -7632,17 +7722,21 @@ p, li { white-space: pre-wrap; } - + Play - - + Comments + + + Edit + + Copy RetroShare Link @@ -7655,7 +7749,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -7670,17 +7764,17 @@ p, li { white-space: pre-wrap; } - + Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. @@ -7690,7 +7784,7 @@ p, li { white-space: pre-wrap; } - + New @@ -7700,8 +7794,8 @@ p, li { white-space: pre-wrap; } - - + + Comment @@ -7716,12 +7810,17 @@ p, li { white-space: pre-wrap; } - + Loading - + + Comments + + + + Open @@ -7744,7 +7843,13 @@ p, li { white-space: pre-wrap; } - + + + Add new post + + + + Loading @@ -7754,7 +7859,7 @@ p, li { white-space: pre-wrap; } - + Title @@ -7819,7 +7924,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7870,12 +7975,12 @@ p, li { white-space: pre-wrap; } - + Subscribers - + Description: @@ -7893,6 +7998,55 @@ p, li { white-space: pre-wrap; } + + GxsCircleItem + + + Details + + + + + Remove Item + + + + + + for identity + + + + + You received a membership request for circle: + + + + + Grant membership request + + + + + Revoke membership request + + + + + You received an invitation for circle: + + + + + Accept invitation + + + + + Received event from unknown Circle: + + + GxsCommentContainer @@ -7972,7 +8126,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -7981,6 +8135,11 @@ p, li { white-space: pre-wrap; } Submit Comment + + + Copy Comment + + Vote Up @@ -8014,7 +8173,7 @@ p, li { white-space: pre-wrap; } - + Comment Signing Error @@ -8072,7 +8231,7 @@ before you can comment - + Expand @@ -8087,12 +8246,12 @@ before you can comment - + Loading - + New Forum @@ -8117,7 +8276,7 @@ before you can comment - + Expand @@ -8137,7 +8296,7 @@ before you can comment - + Loading @@ -8147,7 +8306,7 @@ before you can comment - + Hide @@ -8165,7 +8324,7 @@ before you can comment - + Search forums @@ -8175,7 +8334,12 @@ before you can comment - + + New Thread + + + + Threaded View @@ -8186,7 +8350,7 @@ before you can comment - + Title @@ -8199,28 +8363,28 @@ before you can comment - + Author - + Save image - - + + Loading - + Reply Message - + Previous Thread @@ -8230,12 +8394,12 @@ before you can comment - + Download all files - + Next unread @@ -8275,12 +8439,14 @@ before you can comment - + + + Reply - + Start New Thread @@ -8313,12 +8479,12 @@ before you can comment - + Copy RetroShare Link - + Hide @@ -8328,7 +8494,7 @@ before you can comment - + [Banned] @@ -8363,9 +8529,9 @@ before you can comment - - - + + + Distribution @@ -8375,7 +8541,7 @@ before you can comment - + [ ... Redacted message ... ] @@ -8400,7 +8566,7 @@ before you can comment - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -8420,46 +8586,60 @@ 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 - + + New thread + + + + Read status - + + Edit + + + + Reply to author with private message @@ -8495,12 +8675,12 @@ before you can comment - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive @@ -8531,7 +8711,7 @@ before you can comment - + Information for this identity is currently missing. @@ -8554,7 +8734,17 @@ prevents the message to be forwarded to your friends. - + + (Latest) + + + + + (Old) + + + + You cant act on the author to a non-existant Message @@ -8579,7 +8769,7 @@ prevents the message to be forwarded to your friends. - + Forum name @@ -8599,7 +8789,7 @@ prevents the message to be forwarded to your friends. - + By @@ -8615,12 +8805,12 @@ prevents the message to be forwarded to your friends. 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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -8654,7 +8844,7 @@ prevents the message to be forwarded to your friends. GxsForumsFillThread - + Waiting @@ -8714,25 +8904,15 @@ prevents the message to be forwarded to your friends. - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - - - - - - + + + Public Cyhoeddus - - Only For Your Friends - - - - + Publish Signatures @@ -8819,12 +8999,12 @@ prevents the message to be forwarded to your friends. - + Contacts: - + Restricted to circle: @@ -8847,18 +9027,18 @@ prevents the message to be forwarded to your friends. - + Message tracking - - + + PGP signature required - + Never @@ -8873,7 +9053,7 @@ prevents the message to be forwarded to your friends. - + PGP signature from known ID required @@ -8883,7 +9063,7 @@ prevents the message to be forwarded to your friends. - + Submit Group Changes @@ -8904,7 +9084,7 @@ prevents the message to be forwarded to your friends. - + Set a descriptive description here @@ -8924,7 +9104,12 @@ prevents the message to be forwarded to your friends. - + + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> + + + + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> @@ -8939,7 +9124,12 @@ prevents the message to be forwarded to your friends. - + + Restricted node group + + + + Posts permissions: @@ -9007,7 +9197,7 @@ prevents the message to be forwarded to your friends. - + Unsubscribe @@ -9104,7 +9294,7 @@ prevents the message to be forwarded to your friends. - + AUTHD @@ -9112,7 +9302,7 @@ prevents the message to be forwarded to your friends. GxsIdChooser - + No Signature @@ -9196,10 +9386,118 @@ prevents the message to be forwarded to your friends. + + GxsTransportStatistics + + + Router Statistics + + + + + GroupBox + + + + + ID + + + + + Destination + + + + + Data status + + + + + Data size + + + + + Data hash + + + + + Sending time (secs ago) + + + + + Group ID + + + + + Gxs Transport Groups: + + + + + Group ID / Author + + + + + Number of messages / Publish TS + + + + + Local size of data + + + + + Subscribed + + + + + Popularity + + + + + Details + + + + + Unknown Peer + + + + + Pending data items + + + + + Unknown + + + + + Yes + + + + + No + + + GxsTunnelsDialog - + Authenticated tunnels: @@ -9548,7 +9846,7 @@ p, li { white-space: pre-wrap; } - + Did you receive a certificate from a friend? @@ -9563,7 +9861,7 @@ p, li { white-space: pre-wrap; } - + Share your RetroShare Key @@ -9590,7 +9888,12 @@ private and secure decentralized communication platform. - + + Do you need help with RetroShare? + + + + Open Web Help @@ -9621,7 +9924,7 @@ private and secure decentralized communication platform. - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>The first thing you have to do is to <b>make friends</b>. Once you create a network of Retroshare nodes, or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, use the current page to exchange certificates with other persons you want your Retroshare node to connect to.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to meet other people anonymously.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> @@ -9883,7 +10186,7 @@ p, li { white-space: pre-wrap; } - + Respond now: @@ -9896,8 +10199,8 @@ p, li { white-space: pre-wrap; } IdDialog - - + + All @@ -9912,12 +10215,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -9942,29 +10245,17 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - - - - + Auto-Ban all identities signed by the same node @@ -9995,9 +10286,9 @@ p, li { white-space: pre-wrap; } - + - + Circles @@ -10043,7 +10334,7 @@ p, li { white-space: pre-wrap; } - + Owner node ID : @@ -10053,7 +10344,7 @@ p, li { white-space: pre-wrap; } - + () @@ -10063,17 +10354,17 @@ p, li { white-space: pre-wrap; } - + Send message - + Identity info - + Identity ID : @@ -10083,12 +10374,12 @@ p, li { white-space: pre-wrap; } - + Create new... - + Type: @@ -10098,7 +10389,7 @@ 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> @@ -10108,13 +10399,26 @@ 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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> + + + + Negative - + Neutral @@ -10125,17 +10429,17 @@ p, li { white-space: pre-wrap; } - + <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: - + Anonymous @@ -10150,12 +10454,12 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - + My own identities @@ -10165,7 +10469,7 @@ p, li { white-space: pre-wrap; } - + Show Items @@ -10180,7 +10484,7 @@ p, li { white-space: pre-wrap; } - + Other circles @@ -10260,12 +10564,7 @@ p, li { white-space: pre-wrap; } - - Unknown ID : - - - - + Identity ID: @@ -10320,7 +10619,7 @@ p, li { white-space: pre-wrap; } - + Request subscription @@ -10358,7 +10657,7 @@ p, li { white-space: pre-wrap; } - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -10367,12 +10666,12 @@ These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node @@ -10384,15 +10683,20 @@ These identities will soon be not supported anymore. - + [unverified] - + Identity owned by you, linked to your Retroshare node + + + Identity owned by you, linked to your Retroshare node but not yet validated + + Anonymous identity, owned by you @@ -10404,7 +10708,28 @@ These identities will soon be not supported anymore. - + + Message in chat room %1 + + + + + information + + + + + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. + + + + + + Copy identity to clipboard + + + + Send invite? @@ -10414,7 +10739,7 @@ These identities will soon be not supported anymore. - + Banned @@ -10424,7 +10749,12 @@ These identities will soon be not supported anymore. - + + Unknown ID: + + + + positive @@ -10504,7 +10834,7 @@ These identities will soon be not supported anymore. - + Message/vote/comment @@ -10514,12 +10844,7 @@ These identities will soon be not supported anymore. - - Message in chat lobby %1 - - - - + Distant message signature validation. @@ -10569,7 +10894,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -10594,7 +10919,7 @@ These identities will soon be not supported anymore. - + Distant chat cannot work @@ -10609,21 +10934,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -10633,7 +10958,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -10648,7 +10973,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -10658,7 +10983,7 @@ These identities will soon be not supported anymore. - + Distant chat refused with this person. @@ -10668,7 +10993,7 @@ These identities will soon be not supported anymore. - + +50 Known PGP @@ -10683,17 +11008,17 @@ These identities will soon be not supported anymore. - + Do you really want to delete this identity? - + Owned by - + Node name: @@ -10703,7 +11028,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -10755,7 +11080,7 @@ These identities will soon be not supported anymore. - + @@ -10765,13 +11090,13 @@ These identities will soon be not supported anymore. - + Edit identity - + Error getting key! @@ -10791,7 +11116,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -10846,7 +11171,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -10947,7 +11272,7 @@ These identities will soon be not supported anymore. ImageUtil - + Save image @@ -10966,18 +11291,18 @@ These identities will soon be not supported anymore. LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -10987,17 +11312,27 @@ These identities will soon be not supported anymore. - - Recommend in a message to + + Recommend in a message to... - + + Share on channel... + + + + + Share on forum... + + + + Set command for opening this file - + Collection @@ -11021,7 +11356,7 @@ These identities will soon be not supported anymore. - + Options @@ -11053,12 +11388,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -11137,7 +11472,7 @@ These identities will soon be not supported anymore. - + %1 new message @@ -11147,7 +11482,7 @@ These identities will soon be not supported anymore. - + Down: %1 (kB/s) @@ -11167,7 +11502,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -11217,7 +11552,7 @@ These identities will soon be not supported anymore. - + Statistics @@ -11237,7 +11572,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -11246,7 +11581,7 @@ These identities will soon be not supported anymore. MessageComposer - + Compose @@ -11348,7 +11683,7 @@ These identities will soon be not supported anymore. - + Tags @@ -11493,7 +11828,7 @@ These identities will soon be not supported anymore. - + This friend is suggested by @@ -11509,12 +11844,12 @@ These identities will soon be not supported anymore. - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -11525,7 +11860,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -11789,7 +12124,7 @@ Do you want to save message ? - + Respond now: @@ -11804,7 +12139,7 @@ Do you want to save message ? - + Friend Nodes @@ -11849,13 +12184,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -11957,11 +12292,6 @@ Do you want to save message ? Edit Tag - - - Message - - Distant messages: @@ -11972,6 +12302,11 @@ Do you want to save message ? Load embedded images + + + Mail + + MessageToaster @@ -11992,7 +12327,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -12002,12 +12337,12 @@ Do you want to save message ? - + Subject: - + From: @@ -12017,22 +12352,22 @@ Do you want to save message ? - + Cc: - + Bcc: - + Tags: - + Send Invite @@ -12072,7 +12407,7 @@ Do you want to save message ? - + No subject @@ -12082,7 +12417,7 @@ Do you want to save message ? - + Send invite? @@ -12093,12 +12428,12 @@ Do you want to save message ? - + Download all - + Print Document @@ -12113,12 +12448,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -12131,7 +12466,7 @@ Do you want to save message ? MessageWindow - + New Message @@ -12264,7 +12599,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -12331,7 +12666,7 @@ Do you want to save message ? - + Tags @@ -12339,7 +12674,7 @@ Do you want to save message ? - + Inbox @@ -12388,7 +12723,7 @@ Do you want to save message ? - + Print... @@ -12436,7 +12771,7 @@ Do you want to save message ? - + Reply to All @@ -12454,12 +12789,12 @@ Do you want to save message ? - + From - + Date @@ -12487,12 +12822,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -12552,7 +12887,7 @@ Do you want to save message ? - + Starred @@ -12658,17 +12993,17 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -12709,7 +13044,7 @@ Do you want to save message ? MimeTextEdit - + Paste as plain text @@ -12884,44 +13219,12 @@ Do you want to save message ? - + Name - - Did I authenticated peer - - - - - Did I sign his PGP key - - - - - - Profile - - - - - Has signed my key - - - - - Cert Id - - - - - - Last used - - - - + Clear @@ -12981,12 +13284,12 @@ Do you want to save message ? - + Peer ID - + Remove unused keys... @@ -13033,134 +13336,23 @@ For security, your keyring was previously backed-up to file Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - Personal signature - - - - - PGP key signed by you - - - - - Marginally trusted peer - - - Fully trusted peer - - - - - Untrusted peer - - - - - Yes - - - - - No - - - - - Last hour - - - - - Today - - - - - Never - - - - - %1 days ago - - - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - - - - - yourself - - - - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - - Has signed your key? - - - - - Id - - - - - Do you accept connections signed by this profile? - - - - - Name of the profile - - - - - This column indicates trust level and whether you signed the profile PGP key - - - - - Did that peer sign your own profile PGP key - - - - - PGP Key Id of that profile - - - - - Last time this key was used (received time, or to check connection) - - - - + Export/create a new node - + Trusted keys only - - Trust level - - - - + Search name @@ -13170,7 +13362,7 @@ Right-click and select 'make friend' to be able to connect. - + Profile details... @@ -13259,12 +13451,12 @@ Reported error: - + This is a test. - + Newest on top @@ -13292,7 +13484,7 @@ Reported error: - + Channels @@ -13355,10 +13547,15 @@ Reported error: - + Friend Connected + + + Circles + + Links @@ -13405,8 +13602,18 @@ Reported error: - - Checked, if the identity and the text above occurences must be in the same case to trigger count. + + Count occurrences of my current identity + + + + + Count occurrences of any of the following texts (separate by newlines): + + + + + Checked, if the identity and the text above occurrences must be in the same case to trigger count. @@ -13450,12 +13657,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 @@ -13490,12 +13697,12 @@ Reported error: - + Feed - + Systray @@ -13504,16 +13711,6 @@ Reported error: Count all unread messages - - - Count occurences of any of the following texts (separate by newlines): - - - - - Count occurences of my current identity - - NotifyQt @@ -13543,7 +13740,7 @@ Reported error: - + Unregistered plugin/executable @@ -13553,7 +13750,7 @@ Reported error: - + Please check your system clock. @@ -13573,7 +13770,7 @@ Reported error: - + Test @@ -13594,7 +13791,7 @@ Reported error: - + 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). @@ -13610,33 +13807,44 @@ Reported error: OpModeStatus - + Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + 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 + + + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> + + + + + + Turtle routing disabled! + + PGPKeyDialog @@ -13740,12 +13948,7 @@ p, li { white-space: pre-wrap; } - - Below is the node's profile key in PGP ascii format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - - - - + These options apply to all nodes of the profile: @@ -13780,7 +13983,12 @@ p, li { white-space: pre-wrap; } - + + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. + + + + <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> @@ -13841,27 +14049,39 @@ p, li { white-space: pre-wrap; } - - + + RetroShare - - + + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + + +Warning: In your File-Transfer option, you select allow direct download to Yes. + + + + + +Warning: In your File-Transfer option, you select allow direct download to No. + + + + 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. @@ -13921,12 +14141,12 @@ p, li { white-space: pre-wrap; } - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -13952,7 +14172,7 @@ p, li { white-space: pre-wrap; } PeerItem - + Chat @@ -13963,7 +14183,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -14008,12 +14228,17 @@ p, li { white-space: pre-wrap; } - + + Time offset: + + + + Write Message - + Friend @@ -14032,13 +14257,18 @@ p, li { white-space: pre-wrap; } Friend of Friend + + + Friend Time Offset + + Peer - + @@ -14051,12 +14281,12 @@ p, li { white-space: pre-wrap; } - + Hide - + Send Message @@ -14522,31 +14752,31 @@ p, li { white-space: pre-wrap; } - Error: instance '%1'can't create a widget - - - - - Error: no plugin with name '%1' found + Error: instance '%1' can't create a widget - Error(uninstall): no plugin with name '%1' found + Error: failed to remove file %1 (uninstalling plugin '%2') + + + + + Error (uninstall): no plugin with name '%1' found - Error(installation): plugin file %1 doesn't exist + Error (installation): plugin file %1 doesn't exist - - Error: failed to remove file %1(uninstalling plugin '%2') + + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 @@ -14726,17 +14956,27 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - - Chat remotely closed. Please close this window. + + Remote status unknown. - - The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. + + Can't send message immediately, because there is no tunnel available. - + + The person you are talking to has deleted the secured chat tunnel. + + + + + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible + + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -14745,16 +14985,6 @@ malicious behavior of crafted plugins. Kill the tunnel? - - - Can't send message, because there is no tunnel. - - - - - Can't send message, because the chat partner deleted the secure tunnel. - - PostedCreatePostDialog @@ -14769,7 +14999,7 @@ malicious behavior of crafted plugins. - + RetroShare @@ -14794,12 +15024,12 @@ malicious behavior of crafted plugins. - + Submit a new Post - + Please add a Title @@ -14904,7 +15134,7 @@ malicious behavior of crafted plugins. - + Expand @@ -14919,12 +15149,12 @@ malicious behavior of crafted plugins. - + Loading - + New Posted @@ -14948,14 +15178,14 @@ malicious behavior of crafted plugins. - - + + Comments - - + + Comment @@ -15005,7 +15235,7 @@ malicious behavior of crafted plugins. - + Loading @@ -15101,13 +15331,13 @@ malicious behavior of crafted plugins. - - Posted + + Open each topic in a new tab - - Open each topic in a new tab + + Links @@ -15166,7 +15396,20 @@ malicious behavior of crafted plugins. - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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 friend nodes to accept you automatically.</p></body></html> + + + + Name @@ -15252,20 +15495,7 @@ and use the import button to load it - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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> - - - - + Full keys available in your keyring: @@ -15466,8 +15696,7 @@ p, li { white-space: pre-wrap; } QObject - - + Confirmation @@ -15477,34 +15706,14 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - - Add file - - - - - Add files - - - - - Do you want to process the link ? - - - - - Do you want to process %1 links ? - - - - + Warning: Retroshare is about to ask your system to open this file. @@ -15514,7 +15723,27 @@ and open the Make Friend Wizard. - + + Identity added to People + + + + + The identity was added to people. You can now chat with it, send messages to it, etc. + + + + + Identity cannot be added to People + + + + + The identity was not added to people. Some error occured. The link is probably corrupted. + + + + %1 of %2 RetroShare link processed. @@ -15624,7 +15853,7 @@ and open the Make Friend Wizard. - + Posted not found @@ -15639,12 +15868,32 @@ and open the Make Friend Wizard. - + Recipient not accepted - + + Click to browse/download this file collection + + + + + %1 (%2) + + + + + Identity link (name=%1, ID=%2) + + + + + %1 (%2 files, %3) + + + + Recipients not accepted @@ -15658,6 +15907,11 @@ and open the Make Friend Wizard. Unkown recipients + + + Chat room not found + + Malformed links @@ -15680,7 +15934,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Unable to make path @@ -15690,7 +15944,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Failed to process collection file @@ -15715,7 +15969,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. @@ -15726,12 +15980,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + RetroShare - + Initialization failed. Wrong or missing installation of PGP. @@ -15741,12 +15995,46 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + + Cannot start Tor Manager! + + + + + Tor cannot be started on your system: + + + + + + + Cannot start Tor + + + + + Sorry but Tor cannot be started on your system! + +The error reported is:" + + + + + Cannot start a hidden tor service! + + + + + It was not possible to start a hidden service. + + + + Multiple instances @@ -15766,22 +16054,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Distant peer has closed the chat - - Tunnel is pending... + + Tunnel is pending... Messages will be delivered as soon as possible - - Secured tunnel is working. You can talk! + + Secured tunnel is working. Messages are delivered immediately! - + The collection file %1 could not be opened. Reported error is: @@ -15789,22 +16077,22 @@ Reported error is: - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) @@ -15839,7 +16127,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -15849,7 +16137,7 @@ Reported error is: - + enabled @@ -15859,7 +16147,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -15874,8 +16162,8 @@ Reported error is: - - + + %1 seconds ago @@ -15936,19 +16224,19 @@ Reported error is: - + Security: no anonymous IDs - + Join chat room - - + + This cert is malformed. Error code: @@ -15958,7 +16246,7 @@ Security: no anonymous IDs - + Error @@ -16007,6 +16295,86 @@ Security: no anonymous IDs days + + + Processing + + + + + Choosing group + + + + + Creating receipt + + + + + Signing receipt + + + + + Serializing + + + + + Creating payload + + + + + Encrypting payload + + + + + Publishing + + + + + Waiting for receipt + + + + + Receipt received + + + + + Receipt signature failed + + + + + Encryption failed + + + + + Unknown + + + + + Click to pause the hashing process + + + + + [Hashing is paused] + + + + + Click to resume the hashing process + + QuickStartWizard @@ -16290,7 +16658,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -16379,7 +16747,7 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options @@ -16412,110 +16780,25 @@ p, li { white-space: pre-wrap; } - - RelayPage - - - Enable Relay Connections - - - - - Use Relay Servers - - - - - Relay options - - - - - Number - - - - - Bandwidth per link - - - - - Total Bandwidth - - - - - Friends - - - - - - - kB/s - - - - - Friends of Friends - - - - - General - - - - - Total: - - - - - Relay Server Setup - - - - - Add Server - - - - - Server DHT Key - - - - - Remove Server - - - - - Relay - - - - - <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... + + + + Download - - Recommend in a message to + + Recommend in a message to... - + Collection @@ -16523,7 +16806,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + [All friend nodes] @@ -16538,7 +16821,7 @@ p, li { white-space: pre-wrap; } - + This node hasn't sent any directory information yet. @@ -16605,15 +16888,48 @@ p, li { white-space: pre-wrap; } + + RsCollection + + + Save Collection File. + + + + + File already exists. + + + + + What do you want to do? + + + + + Overwrite + + + + + Merge + + + + + Cancel + + + RsCollectionDialog - + Collection - + File name : @@ -16623,8 +16939,18 @@ p, li { white-space: pre-wrap; } - - + + Destination: + + + + + Right click to change download directory + + + + + Cancel @@ -16634,7 +16960,7 @@ p, li { white-space: pre-wrap; } - + File @@ -16661,57 +16987,48 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Selected files : + ... - + <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - - - - + Remove Duplicate - + Save - + Collection Editor - + File Path @@ -16721,19 +17038,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - - This is the root directory. - - - - - + Real Size: Waiting child... - - + Real File Count: Waiting child... @@ -16743,14 +17053,29 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - - + + Download files + + + + + Specify... + + + + + Choose directory + + + + + Real Size=%1 - - + + Real File Count=%1 @@ -16785,12 +17110,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Do you want to remove this file from the list? - + New Directory @@ -16800,17 +17125,17 @@ 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> - + 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> @@ -16818,7 +17143,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace RsCollectionFile - + Cannot open file %1 @@ -16829,69 +17154,151 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Open collection file - - + - + + Collection files - - - + + + Create collection file - + 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. - - - Save Collection File. - - - - - What do you want to do? - - - - - Overwrite - - - - - Merge - - - - - Cancel - - - - - File already exists. - - - RsHtml + RsDownloadListModel - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? + + Name + i.e: file name + + + + + Size + i.e: file size + + + + + Completed + + + + + Speed + i.e: Download speed + + + + + Progress / Availability + i.e: % downloaded + + + + + Sources + i.e: Sources + + + + + Status + + + + + Speed / Queue position + + + + + Remaining + + + + + Download time + i.e: Estimated Time of Arrival / Time left + + + + + Hash + + + + + Last Time Seen + i.e: Last Time Receiced Data + + + + + Path + i.e: Where file is saved + + + + + Failed + + + + + Okay + + + + + Waiting + + + + + Downloading + + + + + Complete + + + + + Queued + + + + + Paused + + + + + Checking... + + + + + Unknown @@ -16906,7 +17313,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -16916,42 +17323,69 @@ Reducing image to %1x%2 pixels? - + + + filename + + + + Sets the name and location of RetroShare's logfile. - + + level + + + + Sets the verbosity of RetroShare's logging. - + + style + + + + Sets RetroShare's interface style. - + + stylesheet + + + + Sets RetroShare's interface stylesheets. - + + language + + + + Sets RetroShare's language. - - RetroShare Usage Information - - - - + Unable to open log file '%1': %2 - + + + Invalid operating mode specified: + + + + built-in @@ -16961,22 +17395,52 @@ Reducing image to %1x%2 pixels? - + Revision - + + opmode + + + + + Sets RetroShare's operating mode. + + + + + RsLinkURL + + + + + Open RsLink with protocol retroshare:// + + + + + Open RsFile with or without arg. + + + + + RetroShare GUI Usage Information + + + + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: @@ -17193,17 +17657,17 @@ Reducing image to %1x%2 pixels? - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice @@ -17240,18 +17704,18 @@ Reducing image to %1x%2 pixels? - + Folder - + New RetroShare Link(s) - + Open Folder @@ -17529,12 +17993,7 @@ Reducing image to %1x%2 pixels? - - Nat - - - - + Automatic (UPnP) @@ -17570,12 +18029,17 @@ Reducing image to %1x%2 pixels? - + Local Address - + + NAT + + + + External Address @@ -17606,17 +18070,12 @@ Reducing image to %1x%2 pixels? - + Known / Previous IPs: - Show Discovery information in statusbar - - - - 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 @@ -17629,13 +18088,16 @@ behind a firewall or a VPN. - + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -17645,17 +18107,23 @@ behind a firewall or a VPN. - + Onion Address - + Discovery On (recommended) + + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. + + + + Discovery Off @@ -17665,7 +18133,7 @@ behind a firewall or a VPN. - + I2P Address @@ -17690,7 +18158,7 @@ behind a firewall or a VPN. - + Proxy seems to work. @@ -17701,24 +18169,147 @@ behind a firewall or a VPN. - + + BOB is running and accessible + + + + + BOB is not accessible! Is it running? + + + + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) + +When changing options (e.g. port) use the buttons at the bottom to restart BOB. + + + + + + + client + + + + + server + + + + + unknown + + + + + + + BOB is processing a request + + + + + connectivity check + + + + + generating key + + + + + starting up + + + + + shuting down + + + + + BOB is processing a request: %1 + + + + + BOB is broken + + + + + + BOB encountered an error: + + + + + + BOB tunnel is running + + + + + BOB is working fine: tunnel established + + + + + BOB tunnel is not running + + + + + BOB is inactive: tunnel closed + + + + + request a new server key + + + + + load server key from base64 + + + + + stop BOB tunnel first to generate a new key + + + + + stop BOB tunnel first to load a key + + + + + stop BOB tunnel first to disable BOB + + + + 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> @@ -17728,7 +18319,7 @@ Also check your ports! - + Download limit (KB/s) @@ -17748,7 +18339,139 @@ Also check your ports! - + + WARNING: +These values don't take into account the Relays. + + + + + 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] -> Next -> 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? + + + + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + + enableds advanced settings + + + + + advanced mode + + + + + I2P Basic Open Bridge + + + + + I2P Instance address + + + + + 127.0.0.1 + + + + + I2P proxy port + + + + + BOB accessible + + + + + Address + + + + + .b32.i2p + + + + + generate new + + + + + Tunnel length (in/out) + + + + + Tunnel quantity (in/out) + + + + + Tunnel variance (in/out) + + + + + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> + + + + + load key + + + + + Start + + + + + Restart + + + + + Stop + + + + + BOB status + + + + + Incoming + + + + + <html><head/><body><p>Setup your hidden address (and port if needed)</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> @@ -17758,17 +18481,125 @@ Also check your ports! - + + 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. + + + + + Relay + + + + + Enable Relay Connections + + + + + Use Relay Servers + + + + + Relay options + + + + + Number + + + + + Bandwidth per link + + + + + Total Bandwidth + + + + + Friends + + + + + Friends of Friends + + + + + General + + + + + Total: + + + + + Warning: This bandwidth adds up to the max bandwidth. + + + + + Relay Server Setup + + + + + Add Server + + + + + Server DHT Key + + + + + Remove Server + + + + + <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> + + + + Network - + IP Filters - + + Activate IP filtering + + + + IP blacklist @@ -17781,7 +18612,7 @@ Also check your ports! - + Status @@ -17846,59 +18677,39 @@ Also check your ports! - - 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 @@ -17933,26 +18744,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - - 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 @@ -17963,45 +18760,39 @@ If you have issues connecting over Tor check the Tor logs too. - + Remove - - - + + + 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> @@ -18032,16 +18823,26 @@ If you have issues connecting over Tor check the Tor logs too. + Outgoing Manual Tor/I2P + + + + + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> + + + + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled @@ -18294,7 +19095,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -18304,12 +19105,7 @@ Select the Friends with which you want to Share your Channel. - - Search files - - - - + Start Search @@ -18364,7 +19160,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -18379,38 +19175,23 @@ Select the Friends with which you want to Share your Channel. - - Send retroshare Links to Cloud - - - - - Add Links to Cloud - - - - + Some files have been omitted - - - Some files have been ommitted because their hash is not available yet. - - RetroShare Link - + Recommendation(s) - + Create Collection... @@ -18429,6 +19210,21 @@ Select the Friends with which you want to Share your Channel. Download from collection file... + + + Some files have been omitted because they have not been indexed yet. + + + + + Search string should be at least 3 characters long. + + + + + More than 3000 results. Add more/longer search words to select less. + + SoundManager @@ -18538,17 +19334,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - - Load profile - - - - + Load configuration - + Create interface @@ -18561,34 +19352,39 @@ Select the Friends with which you want to Share your Channel. - - Login + + + Password - - Profile - Location - - - - + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> + + + + Load Person Failure @@ -18598,23 +19394,19 @@ The current identities/locations will not be affected. - + + Wrong password + + + + Warning - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">Manage profiles and nodes...</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. @@ -18700,12 +19492,12 @@ This choice can be reverted in settings. - + DHT - + Bandwidth @@ -18719,6 +19511,11 @@ This choice can be reverted in settings. Global Router + + + Gxs Transport + + RTT Statistics @@ -18971,7 +19768,7 @@ p, li { white-space: pre-wrap; } SubFileItem - + %p Kb @@ -18992,7 +19789,7 @@ p, li { white-space: pre-wrap; } - + Play File @@ -19008,7 +19805,12 @@ p, li { white-space: pre-wrap; } - + + Remove this item + + + + ERROR @@ -19019,7 +19821,7 @@ p, li { white-space: pre-wrap; } - + REMOTE @@ -19070,7 +19872,7 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link @@ -19096,7 +19898,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -19155,10 +19957,98 @@ p, li { white-space: pre-wrap; } + + TorControlDialog + + + Dialog + + + + + Setting up Tor... + + + + + Tor status: + + + + + Unknown + + + + + Not started + + + + + Hidden service address: + + + + + Tor bootstrap status: + + + + + + Not set + + + + + Onion address: + + + + + Check that Tor is accessible in your executable path + + + + + [Waiting for Tor...] + + + + + TorStatus + + + Tor + + + + + <p>This version of Retroshare uses Tor to connect to your friends.</p> + + + + + + Tor is currently offline + + + + + Tor is OK + + + + + No tor configuration + + + TransferPage - + Transfer options @@ -19168,22 +20058,22 @@ p, li { white-space: pre-wrap; } - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every @@ -19193,7 +20083,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> @@ -19203,7 +20093,47 @@ p, li { white-space: pre-wrap; } - + + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> + + + + + Ignore duplicate files/directories + + + + + Maximum depth (0=unlimited): + + + + + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> + + + + + Ignore files ending with: + + + + + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> + + + + + ignore files starting with: + + + + + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> + + + + Incoming Directory @@ -19220,6 +20150,11 @@ p, li { white-space: pre-wrap; } + Maximum uploads per friend (0 = no limit) + + + + Default chunk strategy: @@ -19234,7 +20169,12 @@ p, li { white-space: pre-wrap; } - + + Allow direct download: + + + + Streaming @@ -19268,6 +20208,26 @@ p, li { white-space: pre-wrap; } Enforced + + + <html><head/><body><p>How RS manage direct download setting.</p></body></html> + + + + + Yes + + + + + No + + + + + Per user + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -19282,12 +20242,12 @@ p, li { white-space: pre-wrap; } - + Max. tunnel req. forwarded per second: - + <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> @@ -19302,7 +20262,7 @@ p, li { white-space: pre-wrap; } - + Set Incoming Directory @@ -19349,111 +20309,75 @@ p, li { white-space: pre-wrap; } TransfersDialog - + Downloads - + Uploads - - + Name i.e: file name - - + Size i.e: file size - - + Completed - - Speed - i.e: Download speed - - - - - Progress / Availability - i.e: % downloaded - - - - - Sources - i.e: Sources - - - - - - + Status - - + Speed / Queue position - - + Remaining - - Download time - i.e: Estimated Time of Arrival / Time left - - - - - Peer - i.e: user name - - - - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - - - + + Hash - + + + Search @@ -19468,38 +20392,44 @@ p, li { white-space: pre-wrap; } - + Download from collection file... - + Pause - + + Peer + i.e: user name / tunnel id + + + + Resume - + Force Check - + Cancel - + Open Folder - + Open File @@ -19520,12 +20450,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - + Paste RetroShare Link @@ -19556,25 +20486,21 @@ p, li { white-space: pre-wrap; } - Slower - - Average - - + Faster - + Random @@ -19599,12 +20525,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... @@ -19619,97 +20545,26 @@ p, li { white-space: pre-wrap; } - + Set destination directory - + Choose directory - - - - Failed - - - - - - - Okay - - - - - - Waiting - - - - - Downloading - - - - - - - - Complete - - - - - Queued - - - - - Paused - - - - - Checking... - - - - - Unknown - - - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - - - - - Transferring - - - - - Uploading - - - - + Anonymous end-to-end encrypted tunnel 0x + + + + Tunnel + + Are you sure that you want to cancel and delete these files? @@ -19721,7 +20576,7 @@ Try to be patient! - + @@ -19769,23 +20624,14 @@ Try to be patient! - - Last Time Seen - i.e: Last Time Receiced Data - - - - - UserID - - - - + + Expand all - + + Collapse all @@ -19875,23 +20721,17 @@ Try to be patient! - + Columns - + File Transfers - - Path - i.e: Where file is saved - - - - + Path @@ -19901,7 +20741,7 @@ Try to be patient! - + Could not delete preview file @@ -19911,7 +20751,7 @@ Try to be patient! - + Create Collection... @@ -19926,22 +20766,22 @@ Try to be patient! - + Collection - + + %1 tunnels + + + + Anonymous tunnel 0x - - version: - - - - + Files @@ -19949,35 +20789,42 @@ Try to be patient! TreeStyle_RDM - - + + My files - - + + FILE - + + Files - + + File - - + + Empty + + + + + DIR - + Friends Directories [updating...] @@ -19996,6 +20843,11 @@ Try to be patient! My Directories + + + # Files + + Size @@ -20022,7 +20874,17 @@ Try to be patient! - + + Column %1 + + + + + Row %1 + + + + What's new @@ -20030,20 +20892,20 @@ Try to be patient! TurtleRouterDialog - - + + Search requests - - + + Tunnel requests - - + + @@ -20051,7 +20913,7 @@ Try to be patient! - + Tunnel id @@ -20066,7 +20928,11 @@ Try to be patient! - + + Request id: %1 %3 secs ago from %2 %4 (%5 hits) + + + Request id: %1 from [%2] %3 secs ago @@ -20311,26 +21177,26 @@ Try to be patient! - Port : + Port: - allow access from all IP adresses (Default: localhost only) + Allow access from all IP addresses (Default: localhost only) - apply setting and start browser + Apply setting and start browser - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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> @@ -20345,7 +21211,7 @@ Try to be patient! - + failed to start Webinterface @@ -20976,4 +21842,138 @@ Try to be patient! - + + pgpid_item_model + + + Do you accept connections signed by this profile? + + + + + Name of the profile + + + + + This column indicates trust level and whether you signed the profile PGP key + + + + + Did that peer sign your own profile PGP key + + + + + PGP Key Id of that profile + + + + + Last time this key was used (received time, or to check connection) + + + + + Connections + + + + + Profile + + + + + Trust level + + + + + Has signed your key? + + + + + Id + + + + + Last used + + + + + Personal signature + + + + + Marginally trusted peer + + + + + Fully trusted peer + + + + + Untrusted peer + + + + + Yes + + + + + No + + + + + Last hour + + + + + Today + + + + + Never + + + + + %1 days ago + + + + + Accepted + + + + + - + + + + + PGP key signed by you + + + + + has authenticated you. +Right-click and select 'make friend' to be able to connect. + + + + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_da.qm b/retroshare-gui/src/lang/retroshare_da.qm index 8f93ff6f7..6fd0dc9b0 100644 Binary files a/retroshare-gui/src/lang/retroshare_da.qm and b/retroshare-gui/src/lang/retroshare_da.qm differ diff --git a/retroshare-gui/src/lang/retroshare_da.ts b/retroshare-gui/src/lang/retroshare_da.ts index a1757742b..4cebf24a7 100644 --- a/retroshare-gui/src/lang/retroshare_da.ts +++ b/retroshare-gui/src/lang/retroshare_da.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -20,7 +18,7 @@ About RetroShare - + @@ -28,7 +26,7 @@ About - + @@ -36,52 +34,52 @@ Form - + About - + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - + Have fun ;-) - + Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + @@ -97,17 +95,17 @@ File type(extension): - + Use default command - + Command - + @@ -116,9 +114,9 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - + @@ -126,27 +124,27 @@ RetroShare: Advanced Search - + Search Criteria - + Add a further search criterion. - + Reset the search criteria. - + Cancels the search. - + @@ -156,12 +154,12 @@ Perform the advanced search. - + Search - + @@ -170,206 +168,206 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + Description: - + Share Options - + Policy: - + Quality: - + Comments: - + Identity: - + Public - + Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -378,101 +376,101 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + Description: - + Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -480,32 +478,32 @@ p, li { white-space: pre-wrap; } Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -513,187 +511,187 @@ p, li { white-space: pre-wrap; } Language - + Choose the language used in RetroShare - + (Needs restart) - + Style - + Choose RetroShare's interface style - + Style Sheet - + Appearance - + Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -708,37 +706,37 @@ 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -746,17 +744,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + [ERROR]) - + @@ -764,32 +762,32 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + Remove - + Set your Avatar picture - + Load Avatar - + @@ -797,7 +795,7 @@ p, li { white-space: pre-wrap; } Click to change your avatar - + @@ -805,7 +803,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -813,7 +811,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -821,7 +819,7 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - + @@ -832,47 +830,47 @@ p, li { white-space: pre-wrap; } Reset - + Receive Rate - + Send Rate - + Always on Top - + Style - + Changes the transparency of the Bandwidth Graph - + 100 - + % Opaque - + Save - + @@ -882,12 +880,12 @@ p, li { white-space: pre-wrap; } Since: - + Hide Settings - + @@ -896,33 +894,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -935,72 +933,72 @@ p, li { white-space: pre-wrap; } ID - + In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + Form - + @@ -1008,57 +1006,57 @@ p, li { white-space: pre-wrap; } Form - + Friend: - + Type: - + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1066,27 +1064,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1094,180 +1092,180 @@ p, li { white-space: pre-wrap; } Name - Navn + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1275,7 +1273,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1283,38 +1281,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1328,222 +1326,222 @@ p, li { white-space: pre-wrap; } Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private - + Public - + Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + Yes - + No - + Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - + @@ -1553,36 +1551,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - + column - + Chats - + @@ -1590,33 +1588,33 @@ Double click a chat room to enter and chat. Remove Item - + Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + @@ -1626,7 +1624,7 @@ Double click a chat room to enter and chat. Quick Message - + @@ -1635,279 +1633,279 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + Style - + Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1917,72 +1915,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1990,32 +1988,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2023,7 +2021,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2031,7 +2029,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2039,325 +2037,325 @@ Double click a chat room to enter and chat. Close - + Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2365,12 +2363,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2378,12 +2376,12 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + @@ -2394,115 +2392,115 @@ Double click on it to add his name on text writer. IDs - + Personal Circles - + Public Circles - + Peers - + Status - + ID - + Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2512,10 +2510,6 @@ Double click on it to add his name on text writer. Details Detaljer - - Peer Address - Peer Adresse - @@ -2525,37 +2519,33 @@ Double click on it to add his name on text writer. External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - - - - Addresses list - Adresser liste + Include signatures - + @@ -2569,123 +2559,123 @@ Double click on it to add his name on text writer. Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - Navn: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + none - + <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2693,229 +2683,229 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2927,23 +2917,23 @@ Double click on it to add his name on text writer. 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: - + @@ -2955,81 +2945,81 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + @@ -3039,170 +3029,170 @@ resources. Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3212,63 +3202,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3276,129 +3266,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3406,69 +3396,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3476,241 +3466,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3719,201 +3709,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3921,42 +3911,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3967,7 +3957,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -3977,103 +3967,103 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + Public - + IDs - + Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + ID - + Type - + Name: - Navn: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4085,106 +4075,106 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + Add - + Remove - + Search - + All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4193,38 +4183,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4233,100 +4223,100 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + @@ -4337,43 +4327,43 @@ p, li { white-space: pre-wrap; } File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4382,62 +4372,62 @@ p, li { white-space: pre-wrap; } Post Forum Message - + Forum - + Subject - + Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + @@ -4449,64 +4439,64 @@ p, li { white-space: pre-wrap; } Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4514,87 +4504,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4602,7 +4592,7 @@ Do you want to discard this message? Public Information - + @@ -4612,57 +4602,57 @@ Do you want to discard this message? Location: - + Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + @@ -4672,67 +4662,67 @@ Do you want to discard this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4740,7 +4730,7 @@ Do you want to discard this message? users - + @@ -4748,38 +4738,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4787,42 +4777,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4835,57 +4825,57 @@ Do you want to discard this message? General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + Copy link to clipboard - + Rating - + Comments - + File Name - + @@ -4893,27 +4883,27 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + @@ -4928,298 +4918,298 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + Source - + Proxy - + Destination - + Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5229,64 +5219,64 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + Unknown - + RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5295,27 +5285,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5323,113 +5313,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5437,12 +5427,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5450,7 +5440,7 @@ Do you want to discard this message? Start file - + @@ -5460,36 +5450,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5497,12 +5487,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5510,52 +5500,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5563,47 +5553,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5611,52 +5601,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5664,73 +5654,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5738,52 +5728,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5791,47 +5781,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages - + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5845,292 +5835,292 @@ Do you want to discard this message? ID - + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6138,42 +6128,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6181,17 +6171,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6199,17 +6189,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6219,17 +6209,17 @@ at least one peer was not added to a group Search Friends - + Mark all - + Mark none - + @@ -6237,122 +6227,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6360,170 +6350,170 @@ at least one peer was not added to a group Create new Profile - + Password - + All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Indstillinger + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6532,131 +6522,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6664,138 +6654,138 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + Misc - + Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6804,44 +6794,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6853,31 +6843,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> @@ -6890,118 +6880,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7009,82 +6999,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - Detaljer + Unknown Peer - + Pending packets - + Unknown - + @@ -7092,22 +7082,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7115,7 +7105,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7123,7 +7113,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7131,27 +7121,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7159,72 +7149,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7232,12 +7222,12 @@ p, li { white-space: pre-wrap; } Form - + Hide tabbar with one open tab - + @@ -7245,47 +7235,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7293,88 +7283,88 @@ p, li { white-space: pre-wrap; } Title - + Search Title - + Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - + Display - + Subscribe to download and read messages - + @@ -7382,17 +7372,17 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + @@ -7402,77 +7392,77 @@ p, li { white-space: pre-wrap; } Path - + Extension - + Hash - + Date - + Size - + Popularity - + contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7481,68 +7471,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7550,52 +7540,52 @@ p, li { white-space: pre-wrap; } Form - + Download - + TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7603,32 +7593,32 @@ p, li { white-space: pre-wrap; } Form - + Filename - + Size - + Title - + Published - + Status - + @@ -7636,37 +7626,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7674,38 +7664,38 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + Expand - + Remove Item - + Channel Description - + Loading - + New Channel - + Hide - + @@ -7713,121 +7703,121 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + Download - + Play - + Comments - + Edit - + Copy RetroShare Link - + Unsubscribe From Channel - + Expand - + Set as read and remove item - + Remove Item - + Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + Hide - + New - + 0 - + Comment - + I like this - + I dislike this - + Loading - + Comments - + @@ -7837,12 +7827,12 @@ p, li { white-space: pre-wrap; } Open File - + Play Media - + @@ -7850,154 +7840,154 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + Title - + Search Title - + Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + Feeds - + Files - + Subscribers - + Description: - + Posts (at neighbor nodes): - + @@ -8005,7 +7995,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8013,48 +8003,48 @@ p, li { white-space: pre-wrap; } Details - Detaljer + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8062,7 +8052,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8070,67 +8060,67 @@ p, li { white-space: pre-wrap; } Form - + Hot - + New - + Top - + Voter ID: - + Refresh - + Comment - + Author - + Date - + Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8138,27 +8128,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8166,32 +8156,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8199,37 +8189,37 @@ before you can comment Create New Forum - + Forum - + Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8237,38 +8227,38 @@ before you can comment Subscribe to Forum - + Expand - + Remove Item - + Forum Description - + Loading - + New Forum - + Hide - + @@ -8277,48 +8267,48 @@ before you can comment Subject: - + Unsubscribe To Forum - + Expand - + Set as read and remove item - + Remove Item - + In Reply to: - + Loading - + Forum Feed - + Hide - + @@ -8326,274 +8316,274 @@ before you can comment Form - + Start new Thread for Selected Forum - + Search forums - + Last Post - + New Thread - + Threaded View - + Flat View - + Title - + Date - + Author - + Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + Search Title - + Search Date - + Search Author - + Content - + Search Content - + <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> - + No name - + Reply - + Start New Thread - + Expand all - + Collapse all - + Mark as read - + with children - + Mark as unread - + Copy RetroShare Link - + Hide - + Expand - + [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + none - + [ ... Missing 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> - + @@ -8611,7 +8601,7 @@ before you can comment No Forum Selected! - + @@ -8619,189 +8609,189 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + Subject - + On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8809,7 +8799,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8817,38 +8807,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8856,17 +8846,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8880,38 +8870,38 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8919,12 +8909,12 @@ prevents the message to be forwarded to your friends. Public - + Publish Signatures - + @@ -8934,254 +8924,254 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + ID - + Last Post - + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + Popularity - + Posts - + Author - + GxsIdLabel - + @@ -9189,124 +9179,124 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + Unsubscribe - + Subscribe - + Open in new tab - + Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + Mark all as read - + Mark all as unread - + AUTHD - + @@ -9314,12 +9304,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9327,60 +9317,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9388,12 +9378,12 @@ prevents the message to be forwarded to your friends. Loading - + No name - + @@ -9401,107 +9391,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - + Destination - + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - + Details - Detaljer + Unknown Peer - + Pending data items - + Unknown - + Yes - + No - + @@ -9509,42 +9499,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9553,17 +9543,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9572,22 +9562,22 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + @@ -9597,141 +9587,141 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + Search - + Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + Close - + Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9739,66 +9729,66 @@ prevents the message to be forwarded to your friends. 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9807,12 +9797,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9820,32 +9810,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9853,114 +9843,114 @@ p, li { white-space: pre-wrap; } Form - + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9969,241 +9959,241 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + Type: - + Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10212,441 +10202,441 @@ p, li { white-space: pre-wrap; } All - + Reputation - + Search - + Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10654,294 +10644,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10949,98 +10939,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11048,43 +11038,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11097,43 +11087,43 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + Type - + @@ -11143,7 +11133,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11152,43 +11142,43 @@ These identities will soon be not supported anymore. RM - + Add - + Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11201,42 +11191,42 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + Add - + GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11245,7 +11235,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11256,27 +11246,27 @@ These identities will soon be not supported anymore. Remove - + Mark all - + Delete - + Clear history - + Send - + @@ -11285,17 +11275,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11304,47 +11294,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11352,17 +11342,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11373,44 +11363,44 @@ These identities will soon be not supported anymore. Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11419,62 +11409,62 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + Status - + Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + Help - + Minimize - + Maximize - + &Quit - + @@ -11484,107 +11474,107 @@ These identities will soon be not supported anymore. %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + Hide - + Show - + Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11593,350 +11583,350 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + Save - + Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + Subject - + On %1, %2 wrote: - + Re: - + Fwd: - + @@ -11948,200 +11938,200 @@ Do you want to save message to draft box? Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown - + &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - Detaljer + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Close - + @@ -12151,73 +12141,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12225,97 +12215,97 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + Add - + Edit - + Delete - + Default - + A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12323,7 +12313,7 @@ Do you want to save message ? Sub: - + @@ -12331,7 +12321,7 @@ Do you want to save message ? Message - + @@ -12339,17 +12329,17 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + @@ -12364,113 +12354,113 @@ Do you want to save message ? Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + Download - + Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12478,131 +12468,131 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + Delete - + Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12611,67 +12601,67 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + Delete - + Print selected message - + Print - + Display - + @@ -12680,7 +12670,7 @@ Do you want to save message ? Tags - + @@ -12688,7 +12678,7 @@ Do you want to save message ? Inbox - + @@ -12696,18 +12686,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12715,283 +12705,283 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + Subject - + From - + Date - + Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + Search Date - + Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + Mark as read - + Mark as unread - + Add Star - + Edit - + Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -13000,37 +12990,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13038,17 +13028,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13056,27 +13046,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13084,83 +13074,83 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + Play Media - + Expand - + Remove Item - + from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + Hide - + Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13168,52 +13158,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13221,12 +13211,12 @@ Do you want to save message ? Filter: - + Search Network - + @@ -13236,92 +13226,92 @@ Do you want to save message ? Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13329,59 +13319,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13389,7 +13379,7 @@ Reported error: Network - + @@ -13397,22 +13387,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13420,7 +13410,7 @@ Reported error: New Tag - + @@ -13430,7 +13420,7 @@ Reported error: Choose color - + @@ -13448,7 +13438,7 @@ Reported error: Log entries - + @@ -13458,32 +13448,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13491,235 +13481,235 @@ Reported error: News Feed - + Channels - + Forums - + Blogs - + Security - + Test - + Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Forskel på store og små bogstaver + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13727,83 +13717,83 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + Test - + This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13811,7 +13801,7 @@ Reported error: Friend Online - + @@ -13819,41 +13809,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13861,202 +13851,202 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - Indstillinger + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14070,35 +14060,35 @@ p, li { white-space: pre-wrap; } Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + @@ -14118,27 +14108,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + @@ -14148,22 +14138,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14176,7 +14166,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - + @@ -14184,23 +14174,23 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + Expand - + Remove Item - + @@ -14210,72 +14200,72 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14288,17 +14278,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + Hide - + Send Message - + @@ -14306,17 +14296,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14326,53 +14316,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14380,68 +14370,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14449,7 +14439,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + @@ -14457,62 +14447,62 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + Comment - + Summary - + Caption - + Where: - + Photo Title: - + When - + ... - + Add Comment - + Write a comment... - + @@ -14520,39 +14510,39 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14560,58 +14550,58 @@ p, li { white-space: pre-wrap; } Form - + Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14619,53 +14609,53 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + Close - + Start - + Start Slide Show - + Stop Slide Show - + @@ -14673,7 +14663,7 @@ requesting to edit it! Remove - + @@ -14681,76 +14671,76 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + Enable - + Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + About - + File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14758,37 +14748,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14796,22 +14786,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14819,27 +14809,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14848,37 +14838,37 @@ 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. - + Unknown status. - + @@ -14886,18 +14876,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14905,7 +14895,7 @@ malicious behavior of crafted plugins. Popularity - + @@ -14913,17 +14903,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14931,36 +14921,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14968,32 +14958,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15001,12 +14991,12 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + @@ -15016,42 +15006,42 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + Title - + Link - + @@ -15059,42 +15049,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15102,37 +15092,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15140,38 +15130,38 @@ malicious behavior of crafted plugins. Subscribe to Posted - + Expand - + Remove Item - + Posted Description - + Loading - + New Posted - + Hide - + @@ -15179,80 +15169,80 @@ malicious behavior of crafted plugins. 0 - + Site - + Comments - + Comment - + Vote up - + Vote down - + \/ - + Set as read and remove item - + New - + New Comment: - + Comment Value - + Toggle Message Read Status - + Remove Item - + Loading - + By - + @@ -15260,57 +15250,57 @@ malicious behavior of crafted plugins. Form - + Hot - + New - + Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + Next - + @@ -15320,17 +15310,17 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + Previous - + 1-10 - + @@ -15338,17 +15328,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15356,7 +15346,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15364,37 +15354,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15403,20 +15393,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15426,29 +15416,29 @@ p, li { white-space: pre-wrap; } Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15457,67 +15447,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15526,22 +15516,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15551,57 +15541,57 @@ and use the import button to load it Location: - + Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + @@ -15612,12 +15602,12 @@ and use the import button to load it Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15625,51 +15615,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15679,7 +15669,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15687,19 +15677,19 @@ and use the import button to load it From - + Date - + ... - + @@ -15708,285 +15698,285 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + Forum not found - + Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + @@ -15997,86 +15987,86 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16084,306 +16074,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16391,19 +16381,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16412,7 +16402,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> - + @@ -16420,7 +16410,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16429,73 +16419,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16503,153 +16493,153 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + Add - + Remove - + Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16657,12 +16647,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16670,17 +16660,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16688,17 +16678,17 @@ p, li { white-space: pre-wrap; } Form - + The loading of embedded images is blocked. - + Load images - + @@ -16706,52 +16696,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16759,17 +16749,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16777,17 +16767,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16795,22 +16785,22 @@ p, li { white-space: pre-wrap; } Download... - + Download - + Recommend in a message to... - + Collection - + @@ -16818,22 +16808,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16841,27 +16831,27 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + Unknown - + @@ -16869,33 +16859,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16903,32 +16893,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - + Merge - + Cancel - Annuller + @@ -16936,27 +16926,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -16967,187 +16957,187 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + ... - + <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + Save - + Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + Overwrite - + Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17156,17 +17146,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17174,25 +17164,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Cancel - Annuller + @@ -17201,119 +17187,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - Navn + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - + Failed - + Okay - OK + Waiting - + Downloading - + Complete - + Queued - + Paused - + Checking... - + Unknown - + @@ -17321,7 +17307,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17329,134 +17315,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17465,7 +17451,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17481,282 +17467,282 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + Search - + Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + Type - + Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice - + Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + Remove - + Remove All - + Folder - + New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17764,81 +17750,81 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + Expand - + Remove Item - + IP address: - + Peer ID: - + Location: - + Peer Name: - + Unknown Peer - + Hide - + but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17846,43 +17832,43 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + Expand - + Remove Item - + @@ -17892,62 +17878,62 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17956,42 +17942,42 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + Hide - + Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -17999,47 +17985,47 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -18050,56 +18036,56 @@ If you believe it is correct, remove the corresponding line from the file and re NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18108,89 +18094,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18199,300 +18185,300 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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 - + @@ -18501,364 +18487,364 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + Status - + Origin - + Reason - + Comment - + IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + Remove - + 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18866,27 +18852,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18894,27 +18880,27 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + Reset - + Permissions - + 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> - + @@ -18922,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + @@ -18930,7 +18916,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18938,23 +18924,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18962,148 +18948,148 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - Annuller + Add a Share Directory - + Remove - + Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19111,133 +19097,133 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + Reset - + Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + Download - + Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19245,48 +19231,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - + Download complete - + Lobby - + @@ -19294,42 +19280,42 @@ Select the Friends with which you want to Share your Channel. Event: - + Filename: - + Browse - + Event - + Filename - + Open File - + Sound - + Default - + @@ -19337,12 +19323,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19350,12 +19336,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19369,12 +19355,12 @@ Select the Friends with which you want to Share your Channel. Password - + Remember Password - + @@ -19386,38 +19372,38 @@ Select the Friends with which you want to Share your Channel. Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19426,7 +19412,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19435,7 +19421,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19444,7 +19430,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19452,17 +19438,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19472,63 +19458,63 @@ This choice can be reverted in settings. Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + @@ -19542,165 +19528,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19708,30 +19694,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19740,28 +19726,28 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + Style - + @@ -19771,12 +19757,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19784,96 +19770,96 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + Download File - + Download - + Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + DOWNLOAD - + LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19883,12 +19869,12 @@ p, li { white-space: pre-wrap; } Open File - + Copy RetroShare Link - + @@ -19896,17 +19882,17 @@ p, li { white-space: pre-wrap; } Subscribed - + Unsubscribe - + Subscribe - + @@ -19914,7 +19900,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19922,27 +19908,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19950,12 +19936,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19963,12 +19949,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19976,58 +19962,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20035,28 +20021,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20064,231 +20050,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20296,27 +20282,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20325,13 +20311,13 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + @@ -20343,93 +20329,93 @@ p, li { white-space: pre-wrap; } Size i.e: file size - + Completed - + Status - + Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + Search - + Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20440,153 +20426,149 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Okay - OK + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + @@ -20599,209 +20581,209 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - + Path - + Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20810,101 +20792,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20913,13 +20895,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20928,32 +20910,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20961,12 +20943,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20974,42 +20956,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21017,47 +20999,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21069,7 +21051,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21077,22 +21059,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21100,22 +21082,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21133,27 +21115,27 @@ p, li { white-space: pre-wrap; } Yes - + No - + Help - + Retry - + Show Log - + @@ -21168,12 +21150,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21181,62 +21163,62 @@ p, li { white-space: pre-wrap; } Form - + Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21244,123 +21226,123 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + Description: - + Share Options - + Public - + All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21369,107 +21351,107 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + Edit - + New Page - + Refresh - + Search - + My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21477,85 +21459,85 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + Status - + Preview - + @@ -21565,39 +21547,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21605,37 +21587,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21643,98 +21625,98 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + New - + from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21743,12 +21725,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21757,107 +21739,107 @@ p, li { white-space: pre-wrap; } Unknown Unknown (size) - + B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + Unknown - + < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21865,133 +21847,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - + No - + Last hour - + Today - + Never - + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index 226195e3f..8c2ee9aa1 100644 Binary files a/retroshare-gui/src/lang/retroshare_de.qm and b/retroshare-gui/src/lang/retroshare_de.qm differ diff --git a/retroshare-gui/src/lang/retroshare_de.ts b/retroshare-gui/src/lang/retroshare_de.ts index 1c4b79cbd..0eba9437d 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + RetroShare-Version @@ -28,7 +26,7 @@ About - Über + Über @@ -36,52 +34,52 @@ Form - Formular + Formular About - Über + Über Copy Info - + Info kopieren close - + schließen Max score: %1 - + Score: %1 - + Punkte: %1 Level: %1 - + Level: %1 About RetroShare - Über RetroShare + Über RetroShare Have fun ;-) - + Viel Spaß ;-) Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Entschuldigung. Es konnte kein Standardprogramm zum Öffnen gefunden werden @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -540,7 +538,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + (Erfordert Neustart) @@ -625,47 +623,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + DHT-Status anzeigen Show Hashing Status - + Show NAT Status - + NAT-Status anzeigen Show Peer Status - + Show Status ComboBox - + @@ -680,7 +678,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + @@ -690,22 +688,22 @@ p, li { white-space: pre-wrap; } Disable SysTray ToolTip - + Main page items: - + Buttons - + Schaltflächen Item list - + @@ -935,12 +933,12 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Average - Durchschnitt + Durchschnitt Total - + @@ -1061,22 +1059,22 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Legend: - + Current - + Total - + Log scale - + @@ -1109,14 +1107,10 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto ChatLobbyDialog - - Participants - Teilnehmer - Name - Name + Name @@ -1131,7 +1125,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Ban this person (Sets negative opinion) - + @@ -1168,10 +1162,6 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Topic: %1 Thema: %1 - - Lobby management - Lobbyverwaltung - %1 changed his name to: %2 @@ -1200,38 +1190,38 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - Suchen + Suchen Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + @@ -1271,29 +1261,29 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto %1 has left the room. - + %1 hat den Raum verlassen. Chat room management - + %1 joined the room. - + %1 hat den Raum betreten. Unsubscribe from chat room - + Kanal deabonnieren Do you want to unsubscribe to this chat room? - + @@ -1309,7 +1299,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Chats - + Chats @@ -1364,106 +1354,106 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Private Chaträume Public chat rooms - + Öffentliche Chaträume <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Chatraum erstellen Leave this room - + Diesen Raum verlassen Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Diesen Chatraum betreten Enter this chat room as... - + Copy RetroShare Link - RetroShare-Link kopieren + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1539,17 +1529,17 @@ Double click a chat room to enter and chat. Chat rooms - + Chaträume Chat room Name: - + Chatraumname: Chat room Id: - + Chatraumkennung: @@ -1608,7 +1598,7 @@ Double click a chat room to enter and chat. Chats - + Chats @@ -1746,7 +1736,7 @@ Double click a chat room to enter and chat. Load embedded images - Eingebettete Bilder laden + Eingebettete Bilder laden @@ -1761,7 +1751,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + @@ -1819,14 +1809,14 @@ Double click a chat room to enter and chat. Style: - + Stil: Variant: - + Variante: @@ -1843,7 +1833,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1898,11 +1888,7 @@ Double click a chat room to enter and chat. /me is sending a message with /me - - - - Chat - Chat + @@ -2012,7 +1998,7 @@ Double click a chat room to enter and chat. Chats - + @@ -2094,7 +2080,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2104,7 +2090,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2175,7 +2161,7 @@ Double click a chat room to enter and chat. Insert horizontal rule - + Horizontale Linie einfügen @@ -2196,12 +2182,12 @@ Double click a chat room to enter and chat. Don't replace tag with Emote Icon. - + Show Hidden Images - + Versteckte Bilder anzeigen @@ -2219,12 +2205,12 @@ nach der HTML-Konvertierung. Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2259,11 +2245,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Versendete Nachrichten gehen bei diesem Freund erst wieder ein, wenn er online ist + @@ -2351,18 +2333,18 @@ after HTML conversion. Person id: - + Double click on it to add his name on text writer. - + Unsigned - + @@ -2547,10 +2529,6 @@ Double click on it to add his name on text writer. Details Details - - Peer Address - Adresse des Nachbarn - @@ -2565,12 +2543,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2583,10 +2561,6 @@ Double click on it to add his name on text writer. Port Port - - Addresses list - Adressliste - Include signatures @@ -2616,10 +2590,6 @@ Double click on it to add his name on text writer. Not connected Nicht verbunden - - Peer Addresses - Adressen des Nachbarn - Retroshare node details @@ -2653,17 +2623,17 @@ Double click on it to add his name on text writer. Name: - Name: + Name: Status message: - + Statusnachricht: List of known addresses: - + @@ -2753,7 +2723,7 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2779,17 +2749,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + @@ -2879,7 +2849,7 @@ Double click on it to add his name on text writer. Invite your Friends from other Networks to RetroShare. - + @@ -2977,7 +2947,7 @@ Double click on it to add his name on text writer. 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. - + @@ -2994,7 +2964,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: - + @@ -3009,7 +2979,7 @@ resources. &Send an Invitation by Web Mail Providers - + @@ -3019,22 +2989,22 @@ resources. RetroShare certificate - + RetroShare-Zertifikat Please paste below your friend's Retroshare certificate - + Paste certificate - + Zertifikat einfügen <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + @@ -3093,7 +3063,7 @@ resources. <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> - + @@ -3184,12 +3154,12 @@ resources. Certificate appears to be valid - + Zertifikat scheint gültig zu sein Not a valid Retroshare certificate! - + Kein gültiges RetroShare-Zertifikat! @@ -3202,31 +3172,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + @@ -3367,27 +3337,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + Erweiterte Optionen anzeigen <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + @@ -3402,7 +3372,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + @@ -3586,13 +3556,13 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3956,26 +3926,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Bitte versuche noch einmal ein vollständiges Zertifikat zu importieren - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;">Dieses Fenster zeigt den Fortschritt deiner Verbindung zu deinem neuen Nachbarn</span></p> -<p 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;">Es hilft bei der Problembewältigung.</span></p> -<p style="-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;">Falls du ein erfahrener RS-Nutzer bist oder darauf vertraust, dass RS das richtige tun wird,</span></p> -<p 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;">kannst du es schließen.</span></p></body></html> - @@ -4038,12 +3988,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4074,7 +4024,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + @@ -4114,12 +4064,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + @@ -4129,7 +4079,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + @@ -4274,7 +4224,7 @@ p, li { white-space: pre-wrap; } To be defined - + @@ -4311,9 +4261,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4435,7 +4385,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + @@ -4494,7 +4444,7 @@ p, li { white-space: pre-wrap; } Edit Message - + @@ -4526,13 +4476,13 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4547,7 +4497,7 @@ Do you want to discard this message? None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + @@ -4565,16 +4515,6 @@ Do you want to discard this message? Send Senden - - Forum Message - Forumsnachricht - - - Forum Message has not been Sent. -Do you want to reject this message? - Forumsnachricht wurde nicht gesendet. -Möchten Sie diese Nachricht verwerfen? - Post as @@ -4626,7 +4566,7 @@ Möchten Sie diese Nachricht verwerfen? <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> - + @@ -4651,17 +4591,17 @@ Möchten Sie diese Nachricht verwerfen? Create Chat Room - + Chatraum erstellen Put a sensible chat room name here - + Set a descriptive topic here - + @@ -4830,7 +4770,7 @@ Möchten Sie diese Nachricht verwerfen? <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> - + @@ -4856,7 +4796,7 @@ Möchten Sie diese Nachricht verwerfen? No peer found in DHT - + @@ -4884,17 +4824,17 @@ Möchten Sie diese Nachricht verwerfen? Faster - Schneller + Average - Durchschnitt + Durchschnitt Slower - Langsamer + @@ -5382,7 +5322,7 @@ Möchten Sie diese Nachricht verwerfen? Relays - + @@ -5491,7 +5431,7 @@ Möchten Sie diese Nachricht verwerfen? Relay - Relay + @@ -5825,7 +5765,7 @@ Möchten Sie diese Nachricht verwerfen? # Files - + @@ -5855,12 +5795,12 @@ Möchten Sie diese Nachricht verwerfen? Column %1 - + Row %1 - + @@ -5880,10 +5820,6 @@ Möchten Sie diese Nachricht verwerfen? Expand new messages Neue Beiträge erweitern - - Forum - Forum - Load embedded images @@ -5892,12 +5828,12 @@ Möchten Sie diese Nachricht verwerfen? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + @@ -5912,7 +5848,7 @@ Möchten Sie diese Nachricht verwerfen? Forums - Foren + @@ -5926,7 +5862,7 @@ Möchten Sie diese Nachricht verwerfen? ID - + @@ -5941,7 +5877,7 @@ Möchten Sie diese Nachricht verwerfen? export your friendlist including groups - + @@ -5951,7 +5887,7 @@ Möchten Sie diese Nachricht verwerfen? import your friendlist including groups - + @@ -5962,7 +5898,7 @@ Möchten Sie diese Nachricht verwerfen? Trusted nodes - + @@ -6015,7 +5951,7 @@ Möchten Sie diese Nachricht verwerfen? Search ID - Kennung suchen + @@ -6025,12 +5961,12 @@ Möchten Sie diese Nachricht verwerfen? Profile details - + Profildetails Deny connections - Verbindungen ablehnen + Verbindungen ablehnen @@ -6055,17 +5991,17 @@ Möchten Sie diese Nachricht verwerfen? Send message to this node - + Nachricht an diesen Knoten senden Node details - + Knotendetails Recommend this node to... - + Diesen Knoten empfehlen an... @@ -6104,7 +6040,7 @@ Möchten Sie diese Nachricht verwerfen? (keep in mind that the file is unencrypted!) - + @@ -6123,23 +6059,23 @@ Möchten Sie diese Nachricht verwerfen? at least one peer was not added - + at least one peer was not added to a group - + Select file for importing your friendlist from - + Select a file for exporting your friendlist to - + @@ -6153,10 +6089,6 @@ at least one peer was not added to a group Error Fehler - - Failed to get a file! - Fehler beim Holen der Datei! - File is not writeable! @@ -6174,7 +6106,7 @@ at least one peer was not added to a group Show Items - + @@ -6227,42 +6159,42 @@ at least one peer was not added to a group Dialog - Dialog + Dialog Message: - Nachricht: + Nachricht: Recommend friends - Freunde empfehlen + Freunde empfehlen To - An + An Please select at least one friend for recommendation. - Bitte mindestens einen Freund als Empfehlung wählen. + Please select at least one friend as recipient. - Bitte mindestens einen Empfänger wählen. + Recommendation messages sent! - + Empfehlungsnachrichten gesendet! A recommendation message was sent to each of the chosen friends! - + @@ -6298,7 +6230,7 @@ at least one peer was not added to a group Filter only connected - + @@ -6420,7 +6352,7 @@ at least one peer was not added to a group <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> - + @@ -6461,14 +6393,6 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters Alle Felder sind mit min. 3 Zeichen zu versehen - - Password (check) - Passwort (Check) - - - [Required] Type the same password again here. - [Erforderlich] Dasselbe Passwort hier noch einmal eingeben. - Passwords do not match @@ -6482,7 +6406,7 @@ at least one peer was not added to a group Use BOB - + @@ -6490,19 +6414,11 @@ at least one peer was not added to a group This password is for PGP Das ist das Passwort für PGP - - Generate new node - Neuen Netzknoten erzeugen - You can use it now to create a new node. Du kannst es jetzt benutzen, um einen neuen Netzknoten zu erstellen. - - Invalid hidden node - Ungültiger versteckter Netzknoten - Node field is required with a minimum of 3 characters @@ -6513,99 +6429,81 @@ at least one peer was not added to a group 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. - - - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - Es sieht so aus, als ob kein Profil (PGP-Schlüssel) existiert. Bitte fülle zum Erstellen eines Profils die Felder unten aus oder importiere ein bestehendes Profil. - - - No node exists for this profile. - Für dieses Profil existiert kein Netzknoten. - Options - Optionen + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + Standardknoten TOR/I2P Hidden node - + TOR/I2P Versteckter Knoten <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + Knotenname <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + Dieses Profil exportieren <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + Los! TextLabel - TextLabel + @@ -6628,25 +6526,11 @@ Alternativ kannst Du ein bereits existierendes Profil benutzen. Entferne einfach <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>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> - - PGP key length - PGP-Schlüssellänge - Click to create your node and/or profile Zur Erstellung deines Netzknotens und/oder Profils anklicken - - Generate new profile and node - Neues Profil und neuen Netzknoten erzeugen - - - 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" - Willkommen zu RetroShare. Bevor du fortfahren kannst, musst du ein Profil erstellen und einen Netzknoten damit verknüpfen. Fülle dafür bitte dieses Formular aus. -Alternativ kannst du ein (zuvor exportiertes) Profil importieren. Entferne einfach den Haken bei "Neues Profil erstellen". - Export profile @@ -6694,62 +6578,62 @@ und den Import zum Laden verwenden Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + @@ -6774,16 +6658,12 @@ und den Import zum Laden verwenden The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - - - - Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p - Bitte geben Sie eine gültige Adresse folgender Form ein: 31769173498.onion:7800 oder [52 Zeichen].b32.i2p + @@ -6864,22 +6744,22 @@ und den Import zum Laden verwenden When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6899,22 +6779,22 @@ und den Import zum Laden verwenden You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6962,7 +6842,7 @@ und den Import zum Laden verwenden <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6995,7 +6875,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:'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> @@ -7007,31 +6887,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> @@ -7044,7 +6924,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> - + @@ -7056,11 +6936,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7168,7 +7048,7 @@ p, li { white-space: pre-wrap; } GroupBox - + @@ -7213,12 +7093,12 @@ p, li { white-space: pre-wrap; } Data hash - + Branching factor - + @@ -7313,72 +7193,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7409,12 +7289,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + @@ -7467,12 +7347,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Sort Ascending Order - + @@ -7492,37 +7372,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - - - - Sort by Posts - Nach Beiträgen sortieren + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Letzter Beitrag + Letzter Beitrag Never - Nie + Nie @@ -7659,7 +7535,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7903,7 +7779,7 @@ p, li { white-space: pre-wrap; } Edit - Bearbeiten + @@ -7985,7 +7861,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -8014,7 +7890,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -8064,7 +7940,7 @@ p, li { white-space: pre-wrap; } Never - Nie + Nie @@ -8089,7 +7965,7 @@ p, li { white-space: pre-wrap; } You and your friend nodes - + @@ -8119,7 +7995,7 @@ p, li { white-space: pre-wrap; } Last Post: - + Letzter Beitrag: @@ -8171,48 +8047,48 @@ p, li { white-space: pre-wrap; } Details - Details + Remove Item - + for identity - für Identität + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8306,7 +8182,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8331,7 +8207,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8509,7 +8385,7 @@ bevor du kommentieren kannst. New Thread - Neues Thema + @@ -8604,7 +8480,7 @@ bevor du kommentieren kannst. <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> - + @@ -8694,7 +8570,7 @@ bevor du kommentieren kannst. Only friends nodes in group - + @@ -8741,22 +8617,22 @@ bevor du kommentieren kannst. <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> - + @@ -8799,127 +8675,127 @@ bevor du kommentieren kannst. New thread - + Read status - + Edit - Bearbeiten + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Letzter Beitrag Never - Nie + Nie Synchronization - + Synchronisierung Storage - + Speicherung Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8980,7 +8856,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -9084,10 +8960,6 @@ prevents the message to be forwarded to your friends. Public Öffentlich - - Only For Your Friends - Nur für deine Freunde - Publish Signatures @@ -9163,7 +9035,7 @@ prevents the message to be forwarded to your friends. TextLabel - TextLabel + @@ -9189,7 +9061,7 @@ prevents the message to be forwarded to your friends. Limited to your friends - + @@ -9217,12 +9089,12 @@ prevents the message to be forwarded to your friends. Never - Nie + Nie Only friends nodes in group - + @@ -9283,12 +9155,12 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + @@ -9298,12 +9170,12 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + @@ -9313,7 +9185,7 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + @@ -9323,12 +9195,12 @@ prevents the message to be forwarded to your friends. Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9401,59 +9273,59 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + 5 days - + 5 Tage 2 weeks - + 2 Wochen 1 month - + 1 Monat 3 months - + 3 Monate 6 months - + 6 Monate 1 year - + 1 Jahr Indefinitly - + Unbegrenzt Store posts for at most... - + Share publish permissions - + @@ -9568,107 +9440,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Routerstatistiken + GroupBox - + ID - + Destination - Ziel + Data status - Datenstatus + Data size - + Data hash - + Sending time (secs ago) - Sendezeit (vergangene Sekunden) + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Abonniert + Popularity - Beliebtheit + Details - Details + Unknown Peer - Unbekannter Nachbar + Pending data items - + Unknown - Unbekannt + Unbekannt Yes - Ja + Ja No - Nein + Nein @@ -9913,21 +9785,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9949,18 +9821,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -10024,114 +9896,114 @@ p, li { white-space: pre-wrap; } Form - Formular + Formular Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Zertifikatsdatei hinzufügen Share your RetroShare Key - + ... - + ... The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Webhilfe öffnen Copy your Cert to Clipboard - Dein Zertifikat in die Zwischenablage kopieren + Save your Cert into a File - Zertifikat als Datei speichern + Send via Email - + Über E-Mail senden Invite via WebMail - + Über WebMail einladen Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - RetroShare-Einladung + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - Speichern unter... + Speichern als... RetroShare Certificate (*.rsc );;All Files (*) - RetroShare-Zertifikat (*.rsc );;Alle Dateien (*) + Home - Home + @@ -10150,17 +10022,17 @@ private and secure decentralized communication platform. Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + @@ -10195,12 +10067,12 @@ p, li { white-space: pre-wrap; } Ban-option: - + Auto-Ban all identities signed by the same node - + @@ -10211,28 +10083,28 @@ p, li { white-space: pre-wrap; } Send Invite - Einladung senden + Positive votes - + Positive Stimmen 0 - 0 + 0 Negative votes - + Negative Stimmen <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> - + @@ -10259,7 +10131,7 @@ p, li { white-space: pre-wrap; } <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> - + @@ -10269,7 +10141,7 @@ p, li { white-space: pre-wrap; } [unverified] - [unbestätigt] + [unbestätigt] @@ -10329,52 +10201,52 @@ p, li { white-space: pre-wrap; } positive - + positiv negative - + negativ No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - Danke, <br> + Danke, <br> @@ -10418,7 +10290,7 @@ p, li { white-space: pre-wrap; } Votes - + Stimmen @@ -10428,43 +10300,43 @@ p, li { white-space: pre-wrap; } Close - Schließen + Schließen Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + Positive Stimmen 0 - 0 + 0 Negative votes - + Negative Stimmen Usage statistics - + @@ -10557,7 +10429,7 @@ p, li { white-space: pre-wrap; } Create new... - + @@ -10572,7 +10444,7 @@ 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> - + @@ -10584,13 +10456,13 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + @@ -10612,7 +10484,7 @@ p, li { white-space: pre-wrap; } <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> - + @@ -10652,17 +10524,17 @@ p, li { white-space: pre-wrap; } Show Items - + Owned by myself - + Linked to my node - + @@ -10672,7 +10544,7 @@ p, li { white-space: pre-wrap; } Circles I belong to - + @@ -10707,12 +10579,12 @@ p, li { white-space: pre-wrap; } Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + @@ -10722,12 +10594,12 @@ p, li { white-space: pre-wrap; } subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + @@ -10737,16 +10609,12 @@ p, li { white-space: pre-wrap; } Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - - - - Unknown ID : - Unbekannte Kennung: + @@ -10771,7 +10639,7 @@ p, li { white-space: pre-wrap; } Subscription request pending - + @@ -10786,7 +10654,7 @@ p, li { white-space: pre-wrap; } Subscription pending - + @@ -10806,22 +10674,22 @@ p, li { white-space: pre-wrap; } Request subscription - + Accept circle invitation - + Quit this circle - + Diesen Kreis schließen Cancel subscribe request - + @@ -10839,15 +10707,15 @@ p, li { white-space: pre-wrap; } Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + @@ -10859,7 +10727,7 @@ These identities will soon be not supported anymore. Unverified signature from node - + @@ -10880,7 +10748,7 @@ These identities will soon be not supported anymore. Identity owned by you, linked to your Retroshare node but not yet validated - + @@ -10895,33 +10763,33 @@ These identities will soon be not supported anymore. Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + @@ -10931,152 +10799,152 @@ These identities will soon be not supported anymore. <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + positiv negative - + negativ No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Kanäle + Kanäle Forums - Foren + Foren Posted - Posted + Veröffentlicht Chat - Chat + Chat Unknown - Unbekannt + Unbekannt [Unknown] - [Unbekannt] + [Unbekannt] Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + Nachricht/Stimme/Kommentar %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generische Signatur. Generic encryption. - + Generische Verschlüsselung. Generic decryption. - + Generische Entschlüsselung. Membership verification in circle %1. - + @@ -11116,7 +10984,7 @@ These identities will soon be not supported anymore. Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -11465,7 +11333,7 @@ These identities will soon be not supported anymore. Cannot save the image, invalid filename - + @@ -11499,21 +11367,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - Empfehle in einer Nachricht an + @@ -12311,17 +12175,17 @@ Möchtest du die Nachricht speichern ? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12487,10 +12351,6 @@ Möchtest du die Nachricht speichern ? Edit Tag Schlagwort bearbeiten - - Message - Nachricht - Distant messages: @@ -12504,7 +12364,7 @@ Möchtest du die Nachricht speichern ? Mail - + @@ -12568,7 +12428,7 @@ Möchtest du die Nachricht speichern ? Send Invite - Einladung senden + @@ -12618,12 +12478,12 @@ Möchtest du die Nachricht speichern ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13083,7 +12943,7 @@ Möchtest du die Nachricht speichern ? <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> - + @@ -13219,7 +13079,7 @@ Möchtest du die Nachricht speichern ? Mail - + @@ -13250,12 +13110,12 @@ Möchtest du die Nachricht speichern ? Spoiler - + Select text to hide, then push this button - + @@ -13273,7 +13133,7 @@ Möchtest du die Nachricht speichern ? Send Invite - Einladung senden + @@ -13309,12 +13169,12 @@ Möchtest du die Nachricht speichern ? from - von + Reply to invite - + @@ -13344,12 +13204,12 @@ Möchtest du die Nachricht speichern ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13422,22 +13282,6 @@ Möchtest du die Nachricht speichern ? Name Name - - Did I authenticated peer - Habe ich den Nachbarn authentifiziert - - - Did I sign his PGP key - Habe ich den PGP-Schlüssel unterzeichnet - - - Cert Id - ID des Zertifikates - - - Last used - Zuletzt benutzt - Clear @@ -13515,7 +13359,7 @@ Möchtest du die Nachricht speichern ? - 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. @@ -13558,52 +13402,6 @@ Der Schlüsselbund wurde aus Sicherheitsgründen zuvor in einer Datei gesichert. Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Sicherungsdatei kann nicht erstellt werden. Bitte die Schreibrechte im PGP-Verzeichnis, den verfügbaren Speicherplatz usw. überprüfen. - - Personal signature - Persönliche Signatur - - - PGP key signed by you - PGP-Schlüssel von dir unterzeichnet - - - Marginally trusted peer - Geringfügig vertrauter Nachbar - - - Fully trusted peer - Voll vertrauter Nachbar - - - Untrusted peer - Nicht vertrauter Nachbar - - - Last hour - Letzte Stunde - - - Today - Heute - - - Never - Nie - - - %1 days ago - Vor %1 Tagen - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - hat mich authentifiziert. -Rechtsklick und als Freund hinzufügen um zu verbinden. - - - yourself - selbst - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13619,10 +13417,6 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. Trusted keys only Nur vertrauenswürdige Schlüssel - - Trust level - Vertrauensniveau - Search name @@ -13636,7 +13430,7 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. Profile details... - + Profildetails... @@ -13712,7 +13506,7 @@ Reported error: Log entries - + Protokolleinträge @@ -13742,12 +13536,12 @@ Reported error: <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + Protokoll @@ -13786,7 +13580,7 @@ Reported error: Chat Room - + Chatraum @@ -13823,27 +13617,27 @@ Reported error: Friend Connected - Freund verbunden + Freund verbunden Circles - Kreise + Links - + Mails - + Chats - + Chats @@ -13868,32 +13662,32 @@ Reported error: Chat rooms - + Chaträume Chat Rooms - + Chaträume Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Groß-/Kleinschreibung unterscheiden + @@ -13933,7 +13727,7 @@ 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> - + @@ -13985,31 +13779,23 @@ Reported error: Count all unread messages Alle ungelesenen Nachrichten zählen - - Count occurences of any of the following texts (separate by newlines): - Häufigkeit irgendeines der folgenden Texte zählen (durch Zeilenvorschub trennen): - - - Count occurences of my current identity - Häufigkeit meiner aktuellen Identität zählen - NotifyQt Passphrase required - + Passphrase erforderlich You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + @@ -14019,7 +13805,7 @@ Reported error: Please enter your Retroshare passphrase - + @@ -14110,7 +13896,7 @@ Reported error: - 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 @@ -14122,13 +13908,13 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14141,12 +13927,12 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei Profile info - + Profilinfo Name : - Name : + Name : @@ -14156,7 +13942,7 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei <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> - + @@ -14166,7 +13952,7 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei <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> - + @@ -14201,7 +13987,7 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei This profile has signed your own profile key - + @@ -14211,36 +13997,36 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei <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;"> +</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 key - + Diesen Schlüssel signieren PGP key - + PGP-Schlüssel These options apply to all nodes of the profile: - + <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> - + @@ -14250,7 +14036,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> - + @@ -14260,7 +14046,7 @@ p, li { white-space: pre-wrap; } <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> - + @@ -14270,12 +14056,12 @@ p, li { white-space: pre-wrap; } Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14290,7 +14076,7 @@ p, li { white-space: pre-wrap; } <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. This setting is applied to all locations of the same node.</p></body></html> - + @@ -14300,17 +14086,17 @@ p, li { white-space: pre-wrap; } <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + @@ -14358,13 +14144,13 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + @@ -14429,7 +14215,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Retroshare profile - + RetroShare-Profil @@ -14516,7 +14302,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14546,7 +14332,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14661,63 +14447,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. Reputation - Reputation + Reputation <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + Tage <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14808,7 +14594,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14821,7 +14607,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14834,7 +14620,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14982,7 +14768,7 @@ kannst musst du eines auswählen! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15056,44 +14842,28 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Fehler: Instanz '%1' kann kein Widget erstellen + Error: no plugin with name '%1' found Fehler: kein Plug-in mit Namen '%1' gefunden - - Error(uninstall): no plugin with name '%1' found - Fehler(Deinstallation): kein Plug-in mit Namen '%1' gefunden - - - Error(installation): plugin file %1 doesn't exist - Fehler(Installation): Plug-in-datei %1 exisitiert nicht - - - Error: failed to remove file %1(uninstalling plugin '%2') - Fehler: Entfernen von Datei %1 fehlgeschlagen (Deinstallation von Plug-in '%2') - Error: can't copy %1 to %2 @@ -15138,7 +14908,7 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - + @@ -15202,7 +14972,7 @@ 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> - + @@ -15276,29 +15046,25 @@ schädlichem Verhalten von Plug-ins. PopupDistantChatDialog - - 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. - Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + @@ -15310,14 +15076,6 @@ schädlichem Verhalten von Plug-ins. Kill the tunnel? Tunnel schließen? - - Can't send message, because there is no tunnel. - Nachricht kann nicht gesendet werden, da kein Tunnel vorhanden. - - - Can't send message, because the chat partner deleted the secure tunnel. - Nachricht kann nicht gesendet werden, da der sichere Tunnel vom Unterhaltungspartner gelöscht wurde. - PostedCreatePostDialog @@ -15387,7 +15145,7 @@ schädlichem Verhalten von Plug-ins. <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -15417,7 +15175,7 @@ schädlichem Verhalten von Plug-ins. Links - + @@ -15663,10 +15421,6 @@ schädlichem Verhalten von Plug-ins. Tabs Reiter - - Posted - Posted - Open each topic in a new tab @@ -15675,7 +15429,7 @@ schädlichem Verhalten von Plug-ins. Links - + @@ -15737,13 +15491,13 @@ schädlichem Verhalten von Plug-ins. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15835,26 +15589,6 @@ und den Import zum Laden verwenden Certificates (*.pqi *.pem) Zertifikate (*.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;"> -<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"> -<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;">Wähle aus der unten stehenden Liste einen Retroshareknotenschlüssel aus, der auf einem anderen Computer benutzt werden soll und drücke &quot;Ausgwählten Schlüssel exportieren&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;">Um auf einem anderen Computer einen neuen Ort zu erstellen, wähle den Identitätsmanager im Loginfenster. Von da kanns du die Schlüsseldatei importieren und einen neuen Ort für den Schlüssel erstellen. </p> -<p 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;">Das Erstellen eines neuen Netzknoten mit dem gleichen Schlüssel erlaubt es deinen befreundeten Netzknoten dich automatisch zu akzeptieren.</p></body></html> - Full keys available in your keyring: @@ -16075,51 +15809,35 @@ and open the Make Friend Wizard. hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. - - Add file - Datei hinzufügen - - - Add files - Dateien hinzufügen - - - Do you want to process the link ? - Möchtest du den Link verarbeiten ? - - - Do you want to process %1 links ? - Möchtest du %1 Links verarbeiten ? - Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16234,17 +15952,17 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Posted not found - + Posted message not found - + Posted messages not found - + @@ -16254,22 +15972,22 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + @@ -16289,7 +16007,7 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Chat room not found - + @@ -16382,36 +16100,36 @@ Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch & Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16443,20 +16161,12 @@ Lockdatei: Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Tunnelerstellung anstehend... - - - Secured tunnel is working. You can talk! - Gesicherter Tunnel arbeitet. Du kannst dich unterhalten! + @@ -16626,7 +16336,7 @@ Sicherheit: keine anonymen Kennungen Join chat room - + @@ -16647,127 +16357,127 @@ Sicherheit: keine anonymen Kennungen unable to parse XML file! - + Indefinitely - + 5 days - + 5 Tage 2 weeks - + 2 Wochen 1 month - + 1 Monat 2 month - + 2 Monate 6 month - + 6 Monate 1 year - + 1 Jahr days - + Tage Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - Unbekannt + Unbekannt Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16782,12 +16492,12 @@ Sicherheit: keine anonymen Kennungen <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16910,10 +16620,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16964,7 +16674,7 @@ p, li { white-space: pre-wrap; } Where do you want to have the buttons for the page? - + @@ -16981,9 +16691,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16998,8 +16708,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -17183,17 +16893,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Baumansichtoptionen Show column... - + Spalte anzeigen... [no title] - + [kein Titel] @@ -17214,79 +16924,12 @@ p, li { white-space: pre-wrap; } <strong>Herunter:</strong> 0.00 (KiB/s) | <strong>Hoch:</strong> 0.00 (KiB/s) - - RelayPage - - Enable Relay Connections - Relay-Verbindungen aktivieren - - - Use Relay Servers - Relay-Server benutzen - - - Relay options - Relay-Optionen - - - Number - Anzahl - - - Bandwidth per link - Bandbreite pro Verbindung - - - Total Bandwidth - Bandbreite gesamt - - - Friends - Freunde - - - kB/s - KiB/s - - - Friends of Friends - Freunde von Freunden - - - General - Allgemein - - - Total: - Gesamt: - - - Relay Server Setup - Relay-Server Einstellung - - - Add Server - Server hinzufügen - - - Server DHT Key - Server-DHT-Schlüssel - - - Remove Server - Server entfernen - - - Relay - Relay - - RemoteSharedFilesDialog Download... - + @@ -17296,11 +16939,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - In einer Nachricht empfehlen an + @@ -17313,12 +16952,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + Nur @@ -17328,7 +16967,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + @@ -17398,32 +17037,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Kollektionsdatei speichern. + File already exists. - Datei existiert bereits. + What do you want to do? - Was willst du tun? + Overwrite - Überschreiben + Merge - Zusammenfügen + Cancel - Abbrechen + @@ -17446,12 +17085,12 @@ p, li { white-space: pre-wrap; } Destination: - + Right click to change download directory - + @@ -17487,7 +17126,7 @@ p, li { white-space: pre-wrap; } 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. Einige Datei- oder Ordnernamen enthalten unerlaubte Zeichen. Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch '_' ersetzt. @@ -17514,23 +17153,15 @@ Die betroffenen Dateien sind rot markiert <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>Füge ausgewähltes Element zur Kollektion hinzu.</p><p>Wenn ein Verzeichnis ausgewählt wird, werden aller darin enthaltenen Elemente hinzugefügt.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Umschalt + Enter&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>Lege ein neues Verzeichnis in der Kollektion an.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - + - Remove Duplicate - + Duplikat entfernen @@ -17552,10 +17183,6 @@ Die betroffenen Dateien sind rot markiert File Count Anzahl Dateien - - This is the root directory. - Dies ist das Stammverzeichnis - Real Size: Waiting child... @@ -17574,17 +17201,17 @@ Die betroffenen Dateien sind rot markiert Download files - + Specify... - + Choose directory - Ordner auswählen + @@ -17626,12 +17253,12 @@ Die betroffenen Dateien sind rot markiert Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + @@ -17701,30 +17328,6 @@ If you believe it is correct, remove the corresponding line from the file and re Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeile aus der Datei und öffne sie erneut mit Retroshare. - - Save Collection File. - Kollektionsdatei speichern. - - - What do you want to do? - Was willst du tun? - - - Overwrite - Überschreiben - - - Merge - Zusammenfügen - - - Cancel - Abbrechen - - - File already exists. - Datei existiert bereits. - RsDownloadListModel @@ -17732,128 +17335,119 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil Name i.e: file name - Name + Size i.e: file size - Größe + Completed - Fertiggestellt + Speed i.e: Download speed - Geschwindigkeit + Progress / Availability i.e: % downloaded - Fortschritt/Verfügbarkeit + Sources i.e: Sources - Quellen + Status - Status + Speed / Queue position - Geschwindigkeit/Warteschlangenposition + Remaining - Verbleibend + Verbleibend Download time i.e: Estimated Time of Arrival / Time left - Restzeit + Hash - Prüfsumme + Last Time Seen i.e: Last Time Receiced Data - Zuletzt gesehen + Zuletzt gesehen Path i.e: Where file is saved - Pfad + Pfad Failed - Fehlgeschlagen + Fehlgeschlagen Okay - OK + Waiting - + Warte Downloading - Laden + Herunterladen Complete - Vollständig + Vollständig Queued - In Warteschleife + Paused - Pausiert + Pausiert Checking... - + Überprüfe... Unknown - Unbekannt - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Bild ist zu groß zum Übertragen. -Bild auf %1x%2 Pixel reduzieren? + Unbekannt @@ -17880,7 +17474,7 @@ Bild auf %1x%2 Pixel reduzieren? filename - + @@ -17890,7 +17484,7 @@ Bild auf %1x%2 Pixel reduzieren? level - + @@ -17900,7 +17494,7 @@ Bild auf %1x%2 Pixel reduzieren? style - + @@ -17910,7 +17504,7 @@ Bild auf %1x%2 Pixel reduzieren? stylesheet - + @@ -17920,17 +17514,13 @@ Bild auf %1x%2 Pixel reduzieren? language - + Sets RetroShare's language. Setzt die Sprache. - - RetroShare Usage Information - RetroShare-Nutzungsinformationen - Unable to open log file '%1': %2 @@ -17940,7 +17530,7 @@ Bild auf %1x%2 Pixel reduzieren? Invalid operating mode specified: - + @@ -17960,32 +17550,32 @@ Bild auf %1x%2 Pixel reduzieren? opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + @@ -18009,7 +17599,7 @@ Bild auf %1x%2 Pixel reduzieren? Registry Access Error. Maybe you need Administrator right. - + @@ -18551,10 +18141,6 @@ Bild auf %1x%2 Pixel reduzieren? Network Mode Netzwerkmodus - - Nat - Nat - Automatic (UPnP) @@ -18599,7 +18185,7 @@ Bild auf %1x%2 Pixel reduzieren? NAT - + @@ -18637,15 +18223,11 @@ Bild auf %1x%2 Pixel reduzieren? Known / Previous IPs: Bekannte / vorherige IPs: - - Show Discovery information in statusbar - Discovery-Informationen in der Statuszeile anzeigen - 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. Wenn du dies abwählst, kann RetroShare nur deine IP herausfinden, wenn du mit jemandem verbunden bist. Wenn du dies anwählst, @@ -18690,7 +18272,7 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + @@ -18715,7 +18297,7 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. Points at: - + @@ -18741,12 +18323,12 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18755,111 +18337,111 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - unbekannt + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + @@ -18871,7 +18453,7 @@ When changing options (e.g. port) use the buttons at the bottom to restart BOB. The proxy is not enabled or broken. Are all services up and running fine?? Also check your ports! - + @@ -18912,138 +18494,138 @@ Also check your ports! WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Start + Restart - + Stop - Stop + BOB status - + Incoming - Eingehend + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -19057,101 +18639,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - Relay + Enable Relay Connections - Relay-Verbindungen aktivieren + Use Relay Servers - Relay-Server benutzen + Relay options - Relay-Optionen + Number - Anzahl + Bandwidth per link - Bandbreite pro Verbindung + Total Bandwidth - Bandbreite gesamt + Friends - Freunde + Freunde Friends of Friends - Freunde von Freunden + Freunde von Freunden General - Allgemein + Allgemein Total: - Gesamt: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Relay-Server Einstellung + Add Server - Server hinzufügen + Server hinzufügen Server DHT Key - Server-DHT-Schlüssel + Remove Server - Server entfernen + Server entfernen - <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>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> - + @@ -19166,7 +18748,7 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + IP-Filterung aktivieren @@ -19246,44 +18828,36 @@ If you have issues connecting over Tor check the Tor logs too. 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 - - - - Incoming Service Connections - Eingehende Dienstverbindungen + @@ -19294,17 +18868,17 @@ If you have issues connecting over Tor check the Tor logs too. <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> - + @@ -19369,10 +18943,6 @@ If you have issues connecting over Tor check the Tor logs too. <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> @@ -19406,12 +18976,12 @@ If you have issues connecting over Tor check the Tor logs too. Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + @@ -19482,7 +19052,7 @@ If you have issues connecting over Tor check the Tor logs too. <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> - + @@ -19490,7 +19060,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Formular + Formular @@ -19498,7 +19068,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + Einstellungen @@ -19541,32 +19111,32 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Shared directory - + Visible name - + Sichtbarer Name Access - + Zugriff Visibility - Sichtbarkeit + Sichtbarkeit Add new - + Cancel - Abbrechen + Abbrechen @@ -19591,52 +19161,52 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Choose directory - Ordner auswählen + Verzeichnis auswählen Change group visibility... - + Gruppensichtbarkeit ändern... Choose directory to share... - + Choose visible name... - + Sichtbaren Namen auswählen... [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19651,7 +19221,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Choose a directory to share - + @@ -19685,11 +19255,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Configure shared directories - - - - Search files - Dateien suchen + @@ -19761,18 +19327,10 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Send retroshare Links RetroShare-Links senden - - Send retroshare Links to Cloud - RetroShare-Links an die Verknüpfungs-Wolke senden - - - Add Links to Cloud - Die Links zur Verknüpfungs-Wolke hinzufügen - Some files have been omitted - + @@ -19808,17 +19366,17 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19928,10 +19486,6 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. SplashScreen - - Load profile - Profil laden - Load configuration @@ -19950,15 +19504,11 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. RetroShare RetroShare - - Login - Login - Password - Passwort + Passwort @@ -19984,9 +19534,9 @@ Die aktuellen Identitäten/Orte werden nicht geändert. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">New Profile/Node</span></a></p></body></html> - + @@ -20001,7 +19551,7 @@ p, li { white-space: pre-wrap; } Wrong password - + Falsches Passwort @@ -20010,18 +19560,6 @@ p, li { white-space: pre-wrap; } Warning Warnung - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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"> -<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;">Profile und Netzknoten verwalten...</span></a></p></body></html> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. @@ -20143,7 +19681,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. Gxs Transport - + @@ -20335,7 +19873,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20348,7 +19886,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20444,7 +19982,7 @@ p, li { white-space: pre-wrap; } Remove this item - + Element entfernen @@ -20599,58 +20137,58 @@ p, li { white-space: pre-wrap; } Dialog - Dialog + Setting up Tor... - + Tor status: - + Unknown - Unbekannt + Unbekannt Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20658,28 +20196,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20697,98 +20235,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Automatically share incoming directory (Recommended) - Eingehende Ordner automatisch freigeben (Empfohlen) + Edit Share - + Auto-check shared directories every - + minute(s) - + Minute(n) <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Eingehendes Verzeichnis Browse - Durchsuchen + Durchsuchen Partials Directory - + Maximum uploads per friend (0 = no limit) - + @@ -20803,12 +20341,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Ende-zu-Ende-Verschlüsselung: Allow direct download: - + @@ -20833,50 +20371,50 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Angenommen Enforced - + Erzwungen <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Ja + Ja No - Nein + Nein Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + @@ -20901,17 +20439,17 @@ p, li { white-space: pre-wrap; } Set Incoming Directory - + Set Partials Directory - + Files - Dateien + Dateien @@ -20973,21 +20511,6 @@ p, li { white-space: pre-wrap; } Completed Fertiggestellt - - Speed - i.e: Download speed - Geschwindigkeit - - - Progress / Availability - i.e: % downloaded - Fortschritt/Verfügbarkeit - - - Sources - i.e: Sources - Quellen - Status @@ -21003,16 +20526,6 @@ p, li { white-space: pre-wrap; } Remaining Verbleibend - - Download time - i.e: Estimated Time of Arrival / Time left - Restzeit - - - Peer - i.e: user name - Nachbar - Progress @@ -21067,7 +20580,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Nachbar + @@ -21189,7 +20702,7 @@ 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> - + @@ -21216,81 +20729,16 @@ p, li { white-space: pre-wrap; } Choose directory Ordner auswählen - - Failed - Fehlgeschlagen - - - Okay - OK - - - Waiting - Warten - - - Downloading - Laden - - - Complete - Vollständig - - - Queued - In Warteschleife - - - Paused - Pausiert - - - Checking... - Überprüfen... - - - Unknown - Unbekannt - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Wenn der Hash der heruntergeladenen Daten -nicht zum Hash der Quelle passt, sind die Daten -wahrscheinlich fehlerhaft. - -RetroShare wird die Quelle nach detaillierten -Informationen fragen, die vorhandenen Daten -vergleichen und fehlerhafte Blöcke erneut herunterladen. - -Bitte habe etwas Geduld! - - - Transferring - Übertragen - - - Uploading - Hochladend - Anonymous end-to-end encrypted tunnel 0x - + Anonymer Ende-zu-Ende-verschlüsselter Tunnel 0x Tunnel - + @@ -21350,15 +20798,6 @@ Bitte habe etwas Geduld! Please enter a new--and valid--filename Bitte gib einen neuen -- und gültigen -- Dateinamen ein - - Last Time Seen - i.e: Last Time Receiced Data - Zuletzt gesehen - - - UserID - Nutzer-ID - @@ -21466,11 +20905,6 @@ Bitte habe etwas Geduld! File Transfers Dateiübertragungen - - Path - i.e: Where file is saved - Pfad - Path @@ -21514,21 +20948,17 @@ Bitte habe etwas Geduld! %1 tunnels - + Anonymous tunnel 0x Anonymer Tunnel 0x - - version: - Version: - Files - Dateien + Dateien @@ -21560,7 +20990,7 @@ Bitte habe etwas Geduld! Empty - + @@ -21571,7 +21001,7 @@ Bitte habe etwas Geduld! Friends Directories [updating...] - + @@ -21581,7 +21011,7 @@ Bitte habe etwas Geduld! My Directories [updating...] - + @@ -21591,7 +21021,7 @@ Bitte habe etwas Geduld! # Files - + @@ -21611,22 +21041,22 @@ Bitte habe etwas Geduld! Access - + Zugriff Visibility - Sichtbarkeit + Sichtbarkeit Column %1 - + Row %1 - + @@ -21675,7 +21105,7 @@ Bitte habe etwas Geduld! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21923,43 +21353,27 @@ Bitte habe etwas Geduld! Port: - Port: + Port: Allow access from all IP addresses (Default: localhost only) - + Zugriff von allen IP-Adressen erlauben (standardmäßig nur localhost) Apply setting and start browser - + Einstellung anwenden und Browser starten Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - Port : - - - allow access from all IP adresses (Default: localhost only) - Zugriff von allen IP-Adressen erlauben (standardmäßig nur localhost) - - - apply setting and start browser - Einstellung anwenden und Browser starten - - - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - 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> - + @@ -22608,134 +22022,133 @@ Bitte habe etwas Geduld! Do you accept connections signed by this profile? - + Name of the profile - + Name des Profils This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Verbindungen Profile - + Profil Trust level - Vertrauensniveau + Has signed your key? - + Id - + ID Last used - Zuletzt benutzt + Zuletzt verwendet Personal signature - Persönliche Signatur + Persönliche Signatur Marginally trusted peer - Geringfügig vertrauter Nachbar + Fully trusted peer - Voll vertrauter Nachbar + Untrusted peer - Nicht vertrauter Nachbar + Yes - Ja + Ja No - Nein + Nein Last hour - Letzte Stunde + Letzte Stunde Today - Heute + Heute Never - Nie + Nie %1 days ago - Vor %1 Tagen + Vor %1 Tagen Accepted - + Angenommen - - + PGP key signed by you - PGP-Schlüssel von dir unterzeichnet + PGP-Schlüssel von dir unterzeichnet has authenticated you. Right-click and select 'make friend' to be able to connect. - hat mich authentifiziert. -Rechtsklick und als Freund hinzufügen um zu verbinden. + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_el.qm b/retroshare-gui/src/lang/retroshare_el.qm index 8bd7eaa52..5fcbf9a98 100644 Binary files a/retroshare-gui/src/lang/retroshare_el.qm and b/retroshare-gui/src/lang/retroshare_el.qm differ diff --git a/retroshare-gui/src/lang/retroshare_el.ts b/retroshare-gui/src/lang/retroshare_el.ts index 105f40ba9..7d948d741 100644 --- a/retroshare-gui/src/lang/retroshare_el.ts +++ b/retroshare-gui/src/lang/retroshare_el.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + @@ -28,7 +26,7 @@ About - Πληροφοριες + @@ -36,52 +34,52 @@ Form - + About - Πληροφοριες + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - Πληροφοριες σχετικα με το + Have fun ;-) - + Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Συγγνώμη, δεν βρέθηκε προεπιλεγμένη εντολή για αυτό το αρχείο @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -455,7 +453,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -503,7 +501,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -540,7 +538,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + @@ -625,52 +623,52 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + @@ -680,32 +678,32 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + @@ -935,12 +933,12 @@ p, li { white-space: pre-wrap; } Average - Μέσος όρος + Total - + @@ -1061,22 +1059,22 @@ p, li { white-space: pre-wrap; } Legend: - + Current - + Total - + Log scale - + @@ -1099,7 +1097,7 @@ p, li { white-space: pre-wrap; } Load posts in background (Thread) - + @@ -1109,14 +1107,10 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - Συμμετέχοντες - Name - + @@ -1131,7 +1125,7 @@ p, li { white-space: pre-wrap; } Ban this person (Sets negative opinion) - + @@ -1141,12 +1135,12 @@ p, li { white-space: pre-wrap; } Sort by Name - Ταξινόμηση κατά όνομα + Sort by Activity - + @@ -1168,10 +1162,6 @@ p, li { white-space: pre-wrap; } Topic: %1 Θέμα: %1 - - Lobby management - Διαχείριση του προθαλαμου - %1 changed his name to: %2 @@ -1180,7 +1170,7 @@ p, li { white-space: pre-wrap; } Right click to mute/unmute participants<br/>Double click to address this person<br/> - + @@ -1200,38 +1190,38 @@ p, li { white-space: pre-wrap; } Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + @@ -1241,7 +1231,7 @@ p, li { white-space: pre-wrap; } Signature mismatch - + @@ -1251,7 +1241,7 @@ p, li { white-space: pre-wrap; } Unknown hash - + @@ -1271,29 +1261,29 @@ p, li { white-space: pre-wrap; } %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1309,7 +1299,7 @@ p, li { white-space: pre-wrap; } Chats - + @@ -1364,106 +1354,106 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1494,17 +1484,17 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + @@ -1539,17 +1529,17 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + @@ -1569,7 +1559,7 @@ Double click a chat room to enter and chat. Peers: - + @@ -1608,7 +1598,7 @@ Double click a chat room to enter and chat. Chats - + @@ -1666,27 +1656,27 @@ Double click a chat room to enter and chat. Distant Chat - + Everyone - + Contacts - Επαφές + Nobody - + Accept encrypted distant chat from - + @@ -1741,12 +1731,12 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - + @@ -1761,7 +1751,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + @@ -1819,14 +1809,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1843,7 +1833,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1893,31 +1883,27 @@ Double click a chat room to enter and chat. UserName - + /me is sending a message with /me - - - - 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> - + Chatlobbies - + Enabled: - + @@ -1927,7 +1913,7 @@ Double click a chat room to enter and chat. Number of messages restored (0 = off): - + @@ -1952,7 +1938,7 @@ Double click a chat room to enter and chat. Move to cursor - + @@ -1972,12 +1958,12 @@ Double click a chat room to enter and chat. Maximum count for coloring matching text - + Threshold for automatic search - + @@ -2012,7 +1998,7 @@ Double click a chat room to enter and chat. Chats - + @@ -2094,7 +2080,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2104,7 +2090,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2160,48 +2146,48 @@ Double click a chat room to enter and chat. Quote - Απόσπασμα + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2212,18 +2198,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2258,11 +2244,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Τα μηνύματα που στέλνετε θα παραδοθούν αφού και πάλι ο φίλος σας είναι συνδεδεμενος + @@ -2282,7 +2264,7 @@ after HTML conversion. Find Case Sensitively - + @@ -2294,12 +2276,12 @@ after HTML conversion. Move To Cursor - + Don't stop to color after X items found (need more CPU) - + @@ -2350,18 +2332,18 @@ after HTML conversion. Person id: - + Double click on it to add his name on text writer. - + Unsigned - + @@ -2376,7 +2358,7 @@ Double click on it to add his name on text writer. <b>Return to marked text</b><br><i>Ctrl+M</i> - + @@ -2386,7 +2368,7 @@ Double click on it to add his name on text writer. Don't stop to color after - + @@ -2520,17 +2502,17 @@ Double click on it to add his name on text writer. External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + @@ -2546,10 +2528,6 @@ Double click on it to add his name on text writer. Details Λεπτομέρειες - - Peer Address - Peer Διευθυνση - @@ -2564,12 +2542,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2582,10 +2560,6 @@ Double click on it to add his name on text writer. Port Υποδοχη - - Addresses list - Λίστα διευθύνσεων - Include signatures @@ -2643,32 +2617,32 @@ Double click on it to add his name on text writer. Node ID : - + Name: - + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + @@ -2689,12 +2663,12 @@ Double click on it to add his name on text writer. an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + @@ -2704,12 +2678,12 @@ Double click on it to add his name on text writer. <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>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> - + @@ -2748,7 +2722,7 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2774,17 +2748,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + @@ -2904,7 +2878,7 @@ Double click on it to add his name on text writer. Email - Email + @@ -2972,7 +2946,7 @@ Double click on it to add his name on text writer. 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. - + @@ -2989,7 +2963,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: - + @@ -2999,37 +2973,37 @@ resources. Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + @@ -3088,7 +3062,7 @@ resources. <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> - + @@ -3179,12 +3153,12 @@ resources. Certificate appears to be valid - + Not a valid Retroshare certificate! - + @@ -3197,31 +3171,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + @@ -3352,7 +3326,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP-Addr: - + @@ -3362,32 +3336,32 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + Recommend many friends to each others - + @@ -3397,7 +3371,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + @@ -3417,7 +3391,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Please select at least one friend for recommendation. - + @@ -3427,12 +3401,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add key to keyring - + This key is already in your keyring - + @@ -3440,34 +3414,34 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + @@ -3477,32 +3451,32 @@ even if you don't make friends. No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3530,7 +3504,7 @@ even if you don't make friends. Net Result - + @@ -3546,56 +3520,56 @@ even if you don't make friends. DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + @@ -3610,93 +3584,93 @@ p, li { white-space: pre-wrap; } Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - DHT Απενεργοποιημενο + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + @@ -3706,7 +3680,7 @@ p, li { white-space: pre-wrap; } Initial connections can take a while, please be patient - + @@ -3722,17 +3696,17 @@ p, li { white-space: pre-wrap; } Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + @@ -3744,7 +3718,7 @@ p, li { white-space: pre-wrap; } Try again shortly, Retroshare will continue connecting in the background - + @@ -3758,27 +3732,27 @@ p, li { white-space: pre-wrap; } DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + @@ -3788,12 +3762,12 @@ p, li { white-space: pre-wrap; } In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + @@ -3808,12 +3782,12 @@ p, li { white-space: pre-wrap; } DHT startup Failed - + Your DHT has not started properly - + @@ -3828,43 +3802,43 @@ p, li { white-space: pre-wrap; } - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + @@ -3875,24 +3849,24 @@ p, li { white-space: pre-wrap; } Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + @@ -3902,17 +3876,17 @@ p, li { white-space: pre-wrap; } They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + @@ -3922,17 +3896,17 @@ p, li { white-space: pre-wrap; } Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + @@ -3942,12 +3916,12 @@ p, li { white-space: pre-wrap; } You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3960,12 +3934,12 @@ p, li { white-space: pre-wrap; } UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + @@ -3975,22 +3949,22 @@ p, li { white-space: pre-wrap; } UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -4011,12 +3985,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4042,17 +4016,17 @@ p, li { white-space: pre-wrap; } Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4067,47 +4041,47 @@ p, li { white-space: pre-wrap; } Name: - + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Ιδιωτικα + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4160,7 +4134,7 @@ p, li { white-space: pre-wrap; } Signed by known nodes - + @@ -4170,55 +4144,55 @@ p, li { white-space: pre-wrap; } PGP Identity - + Anon Id - + Circle name - + Update - + Close - Κλεισιμο + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4232,12 +4206,12 @@ p, li { white-space: pre-wrap; } Group Name: - Όνομα ομάδας: + Group ID: - + @@ -4247,7 +4221,7 @@ p, li { white-space: pre-wrap; } To be defined - + @@ -4284,9 +4258,9 @@ 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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -4393,12 +4367,12 @@ p, li { white-space: pre-wrap; }⏎ Generate mass data - + Do you really want to generate %1 messages ? - + @@ -4408,7 +4382,7 @@ p, li { white-space: pre-wrap; }⏎ Edit Channel Post - + @@ -4467,7 +4441,7 @@ p, li { white-space: pre-wrap; }⏎ Edit Message - + @@ -4499,13 +4473,13 @@ p, li { white-space: pre-wrap; }⏎ Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4515,23 +4489,23 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + @@ -4546,7 +4520,7 @@ Do you want to discard this message? Congrats, you found a bug! - + @@ -4574,7 +4548,7 @@ Do you want to discard this message? Visibility: - + @@ -4589,12 +4563,12 @@ Do you want to discard 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 - + @@ -4614,17 +4588,17 @@ Do you want to discard this message? Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + @@ -4634,7 +4608,7 @@ Do you want to discard this message? Identity to use: - + @@ -4732,47 +4706,47 @@ Do you want to discard this message? PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4793,7 +4767,7 @@ Do you want to discard 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> - + @@ -4819,7 +4793,7 @@ Do you want to discard this message? No peer found in DHT - + @@ -4847,22 +4821,22 @@ Do you want to discard this message? Faster - Πιο γρήγορα + Average - Μέσος όρος + Slower - Πιο αργα + File Never Seen - + @@ -5084,17 +5058,17 @@ Do you want to discard this message? Search IP - + Copy %1 to clipboard - + Unknown NetState - + @@ -5104,12 +5078,12 @@ Do you want to discard this message? Local Net - + Behind NAT - + @@ -5119,117 +5093,117 @@ Do you want to discard this message? UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + @@ -5259,7 +5233,7 @@ Do you want to discard this message? Direct - + @@ -5274,7 +5248,7 @@ Do you want to discard this message? Udp Started - + @@ -5284,12 +5258,12 @@ Do you want to discard this message? Request Active - + No Request - + @@ -5299,7 +5273,7 @@ Do you want to discard this message? RELAY END - + @@ -5316,17 +5290,17 @@ Do you want to discard this message? unlimited - + Own Relay - + RELAY PROXY - + @@ -5345,7 +5319,7 @@ Do you want to discard this message? Relays - + @@ -5368,37 +5342,37 @@ Do you want to discard this message? Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + @@ -5413,27 +5387,27 @@ Do you want to discard this message? DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + @@ -5443,33 +5417,33 @@ Do you want to discard this message? Search Network - Δίκτυο αναζήτησης + Peers - Peers + Relay - Ρελέ + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5755,7 +5729,7 @@ Do you want to discard this message? Patch - + @@ -5765,7 +5739,7 @@ Do you want to discard this message? Header - + @@ -5788,7 +5762,7 @@ Do you want to discard this message? # Files - + @@ -5818,12 +5792,12 @@ Do you want to discard this message? Column %1 - + Row %1 - + @@ -5843,24 +5817,20 @@ Do you want to discard this message? Expand new messages Επεκταση νεων μυνηματων - - Forum - Φορουμ - Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + @@ -5870,12 +5840,12 @@ Do you want to discard this message? Open each forum in a new tab - + Forums - Φόρουμ + @@ -5889,7 +5859,7 @@ Do you want to discard this message? ID - ID + @@ -5899,33 +5869,33 @@ Do you want to discard this message? export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + @@ -5978,22 +5948,22 @@ Do you want to discard this message? Search ID - + Sort by state - + Profile details - + Deny connections - + @@ -6018,17 +5988,17 @@ Do you want to discard this message? Send message to this node - + Node details - + Recommend this node to... - + @@ -6060,13 +6030,13 @@ Do you want to discard this message? Your friendlist is stored at: - + (keep in mind that the file is unencrypted!) - + @@ -6079,29 +6049,29 @@ Do you want to discard this message? 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 your friendlist from - + Select a file for exporting your friendlist to - + @@ -6119,7 +6089,7 @@ at least one peer was not added to a group File is not writeable! - + @@ -6131,7 +6101,7 @@ at least one peer was not added to a group Show Items - + @@ -6151,22 +6121,22 @@ at least one peer was not added to a group Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + @@ -6184,42 +6154,42 @@ at least one peer was not added to a group Dialog - Διαλόγος + Message: - Μήνυμα: + Recommend friends - Προτείνετε φίλους + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - Παρακαλώ επιλέξτε τουλάχιστον ένα φίλο ως παραλήπτη. + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6250,12 +6220,12 @@ at least one peer was not added to a group Sort by state - + Filter only connected - + @@ -6270,12 +6240,12 @@ at least one peer was not added to a group Mark all - Επισημάνση όλων + Mark none - + @@ -6372,17 +6342,17 @@ at least one peer was not added to a group Keyring - + <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. - + @@ -6393,12 +6363,12 @@ at least one peer was not added to a group Network graph - + Set your status message here. - + @@ -6421,7 +6391,7 @@ at least one peer was not added to a group Passwords do not match - + @@ -6431,145 +6401,145 @@ at least one peer was not added to a group Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Επιλογές + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6578,131 +6548,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6755,7 +6725,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + @@ -6765,22 +6735,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6800,22 +6770,22 @@ and use the import button to load it You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6841,7 +6811,7 @@ and use the import button to load it Minimize to Tray Icon - + @@ -6863,7 +6833,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6896,7 +6866,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:'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> @@ -6908,31 +6878,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> @@ -6945,7 +6915,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> - + @@ -6957,11 +6927,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7056,7 +7026,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + @@ -7069,17 +7039,17 @@ p, li { white-space: pre-wrap; } GroupBox - + ID - ID + Identity Name - + @@ -7089,42 +7059,42 @@ p, li { white-space: pre-wrap; } Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + @@ -7134,7 +7104,7 @@ p, li { white-space: pre-wrap; } Pending packets - + @@ -7147,22 +7117,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7178,7 +7148,7 @@ p, li { white-space: pre-wrap; } [Unknown] - [Άγνωστο] + @@ -7214,72 +7184,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7292,7 +7262,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7300,7 +7270,7 @@ p, li { white-space: pre-wrap; } Share - + @@ -7310,12 +7280,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + @@ -7325,22 +7295,22 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7368,12 +7338,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Sort Ascending Order - + @@ -7393,33 +7363,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - Ποτέ + @@ -7429,7 +7399,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + @@ -7556,7 +7526,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7576,7 +7546,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + @@ -7586,18 +7556,18 @@ p, li { white-space: pre-wrap; } Set download directory - + [Default directory] - + Specify... - Καθορίσμος... + @@ -7640,7 +7610,7 @@ p, li { white-space: pre-wrap; } Checking - + @@ -7706,17 +7676,17 @@ p, li { white-space: pre-wrap; } Add Channel Admins - + Select Channel Admins - + Update Channel - + @@ -7768,12 +7738,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + @@ -7800,7 +7770,7 @@ p, li { white-space: pre-wrap; } Edit - Επεξεργασία + @@ -7882,7 +7852,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -7911,7 +7881,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -7961,32 +7931,32 @@ p, li { white-space: pre-wrap; } Never - Ποτέ + Public - Δημοσια + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -8001,7 +7971,7 @@ p, li { white-space: pre-wrap; } Show feeds - + @@ -8011,23 +7981,23 @@ p, li { white-space: pre-wrap; } Administrator: - + Last Post: - + unknown - Άγνωστο + Distribution: - + @@ -8042,7 +8012,7 @@ p, li { white-space: pre-wrap; } Subscribers - + @@ -8052,7 +8022,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8068,48 +8038,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8203,7 +8173,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8228,7 +8198,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -8273,17 +8243,17 @@ before you can comment Update Forum - + Add Forum Admins - + Select Forum Admins - + @@ -8362,7 +8332,7 @@ before you can comment In Reply to: - + @@ -8372,7 +8342,7 @@ before you can comment Forum Feed - + @@ -8405,7 +8375,7 @@ before you can comment New Thread - Νέο θεμα + @@ -8439,7 +8409,7 @@ before you can comment Save image - + @@ -8500,7 +8470,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> - + @@ -8565,54 +8535,54 @@ before you can comment [Banned] - + [unknown] - + Public - Δημοσια + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + @@ -8637,22 +8607,22 @@ 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> - + @@ -8695,127 +8665,127 @@ before you can comment New thread - + Read status - + Edit - Επεξεργασία + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - Ποτέ + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8845,12 +8815,12 @@ prevents the message to be forwarded to your friends. Subscribers - + Posts (at neighbor nodes) - + @@ -8876,7 +8846,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -8980,10 +8950,6 @@ prevents the message to be forwarded to your friends. Public Δημοσια - - Only For Your Friends - Μόνο για τους φίλους σας - Publish Signatures @@ -9047,29 +9013,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Σχόλια: + TextLabel - + Distribution: - + Anti Spam: - + @@ -9080,45 +9046,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - Ποτέ + Only friends nodes in group - + @@ -9128,7 +9094,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + @@ -9138,28 +9104,28 @@ prevents the message to be forwarded to your friends. Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + @@ -9179,52 +9145,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9297,59 +9263,59 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9407,38 +9373,38 @@ prevents the message to be forwarded to your friends. [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + @@ -9464,107 +9430,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Στατιστικά στοιχεία του δρομολογητή + GroupBox - + ID - ID + Destination - Προορισμος + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Εγγεγραμμένος + Popularity - Δημοτικότητα + Details - + Unknown Peer - Άγνωστο Peer + Pending data items - + Unknown - Άγνωστο + Yes - Ναι + No - Όχι + @@ -9572,42 +9538,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - Άγνωστο Peer + @@ -9794,7 +9760,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + @@ -9809,21 +9775,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9845,18 +9811,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -9914,7 +9880,7 @@ p, li { white-space: pre-wrap; }⏎ Error opening help file: - + @@ -9922,114 +9888,114 @@ p, li { white-space: pre-wrap; }⏎ Form - + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - Αντιγράψετε σας Cert πρόχειρο + Save your Cert into a File - Αποθηκεύσετε Cert σας σε ένα αρχείο + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - Πρόσκληση RetroShare + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Σας Cert αντιγράφεται στο Πρόχειρο, πάστα και να το στείλετε στο φίλο σας μέσω email ή κάποιο άλλο τρόπο + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - RetroShare Πιστοποιητικα (*.rsc );;Ολα τα αρχεια (*) + Home - Αρχική σελίδα + @@ -10043,27 +10009,27 @@ private and secure decentralized communication platform. Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10073,32 +10039,32 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + @@ -10109,28 +10075,28 @@ p, li { white-space: pre-wrap; } Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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> - + @@ -10146,7 +10112,7 @@ p, li { white-space: pre-wrap; } Neutral - + @@ -10157,122 +10123,122 @@ p, li { white-space: pre-wrap; } <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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - Ευχαριστούμε, <br> + @@ -10296,7 +10262,7 @@ p, li { white-space: pre-wrap; } Anonymous Id - + @@ -10306,90 +10272,90 @@ p, li { white-space: pre-wrap; } Create new circle - + Persons - + Votes - + Person - + Close - Κλεισιμο + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - Κύκλοι + Circle name - + Membership - Ένταξη + Public Circles - Δημόσιοι κύκλοι + Personal Circles - Προσωπικοί κύκλοι + @@ -10405,32 +10371,32 @@ p, li { white-space: pre-wrap; } Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + @@ -10440,22 +10406,22 @@ p, li { white-space: pre-wrap; } Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10465,12 +10431,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> - + @@ -10482,13 +10448,13 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + @@ -10499,7 +10465,7 @@ p, li { white-space: pre-wrap; } Neutral - + @@ -10510,12 +10476,12 @@ p, li { white-space: pre-wrap; } <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: - + @@ -10525,197 +10491,197 @@ p, li { white-space: pre-wrap; } ID - ID + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - Δημοσια + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - Κατάσταση: + Full member - + Invited by admin - + Subscription request pending - + unknown - Άγνωστο + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10723,294 +10689,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Κανάλια + Forums - Φόρουμ + Posted - Καταχωρήθηκε + Chat - + Unknown - Άγνωστο + [Unknown] - [Άγνωστο] + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -11018,7 +10984,7 @@ These identities will soon be not supported anymore. People - + @@ -11029,87 +10995,87 @@ These identities will soon be not supported anymore. Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11153,7 +11119,7 @@ These identities will soon be not supported anymore. To be generated - + @@ -11177,27 +11143,27 @@ These identities will soon be not supported anymore. Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11221,7 +11187,7 @@ These identities will soon be not supported anymore. RM - + @@ -11237,27 +11203,27 @@ These identities will soon be not supported anymore. Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11275,7 +11241,7 @@ These identities will soon be not supported anymore. GXSId - + @@ -11287,25 +11253,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11354,17 +11320,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11393,21 +11359,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - Συνιστούμε σε ένα μήνυμα για να + @@ -11516,7 +11478,7 @@ These identities will soon be not supported anymore. Open Messenger - + @@ -11631,12 +11593,12 @@ These identities will soon be not supported anymore. ServicePermissions - + Service permissions matrix - + @@ -11646,22 +11608,22 @@ These identities will soon be not supported anymore. Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11777,12 +11739,12 @@ These identities will soon be not supported anymore. Address list: - + Recommend this friend - + @@ -11792,7 +11754,7 @@ These identities will soon be not supported anymore. Set Text background color - + @@ -11892,17 +11854,17 @@ These identities will soon be not supported anymore. All addresses (mixed) - + All people - + My contacts - + @@ -12205,17 +12167,17 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12230,47 +12192,47 @@ Do you want to save message ? Friend Nodes - + 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) - + @@ -12281,7 +12243,7 @@ Do you want to save message ? Distant identity: - + @@ -12291,12 +12253,12 @@ Do you want to save message ? Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12304,22 +12266,22 @@ Do you want to save message ? Everyone - + Contacts - Επαφές + Nobody - + Accept encrypted distant messages from - + @@ -12381,24 +12343,20 @@ Do you want to save message ? Edit Tag Επεξεργασια ετικέτας - - Message - Μυνημα - Distant messages: - + Load embedded images - + Mail - + @@ -12462,7 +12420,7 @@ Do you want to save message ? Send Invite - + @@ -12512,12 +12470,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -12543,17 +12501,17 @@ Do you want to save message ? Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12977,7 +12935,7 @@ 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> - + @@ -13074,7 +13032,7 @@ Do you want to save message ? This message goes to a distant person. - + @@ -13093,27 +13051,27 @@ Do you want to save message ? Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13139,17 +13097,17 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13167,7 +13125,7 @@ Do you want to save message ? Send Invite - + @@ -13203,12 +13161,12 @@ Do you want to save message ? from - από + Reply to invite - + @@ -13238,12 +13196,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13316,22 +13274,6 @@ Do you want to save message ? Name Ονομα - - Did I authenticated peer - Έλεγχος ταυτότητας ομότιμου - - - Did I sign his PGP key - Μπορώ να υπογραψω το PGP κλειδί - - - Cert Id - CERT Id - - - Last used - Τελευταία χρησιμοποιείμενοι - Clear @@ -13409,7 +13351,7 @@ Do you want to save message ? - 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. @@ -13452,52 +13394,6 @@ For security, your keyring was previously backed-up to file Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Δεν είναι δυνατή η δημιουργία αντιγράφων ασφαλείας αρχείων. Έλεγχος για τα δικαιώματα στον κατάλογο PGP, χώρο στο δίσκο, κλπ. - - Personal signature - Προσωπική υπογραφή - - - PGP key signed by you - Το PGP κλειδί υπογράφεται από εσάς - - - Marginally trusted peer - Οριακά αξιόπιστο peer - - - Fully trusted peer - Πλήρως αξιόπιστο peer - - - Untrusted peer - Μη αξιόπιστο peer - - - Last hour - Τελευταία ώρα - - - Today - Σήμερα - - - Never - Ποτέ - - - %1 days ago - %1 ημέρες πριν - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - έχει γίνει έλεγχος ταυτότητας σας. -Κάντε δεξί κλικ και επιλέξτε «κάνει φίλο» να είναι σε θέση να συνδεθείτε. - - - yourself - τον εαυτό σας - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13506,12 +13402,12 @@ Right-click and select 'make friend' to be able to connect. Export/create a new node - + Trusted keys only - + @@ -13521,19 +13417,19 @@ Right-click and select 'make friend' to be able to connect. Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13564,7 +13460,7 @@ Reported error: Freeze - + @@ -13600,7 +13496,7 @@ Reported error: Log entries - + @@ -13620,22 +13516,22 @@ Reported error: Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13674,7 +13570,7 @@ Reported error: Chat Room - + @@ -13706,32 +13602,32 @@ Reported error: Ip security - + Friend Connected - Φίλος συνδεθηκε + Circles - Κύκλοι + Links - + Mails - + Chats - + @@ -13756,32 +13652,32 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Διάκριση πεζών-κεφαλαίων + @@ -13821,7 +13717,7 @@ 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> - + @@ -13851,12 +13747,12 @@ Reported error: Disable All Toasters - + Disable All Toaster temporarily - + @@ -13866,12 +13762,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13879,17 +13775,17 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + @@ -13899,7 +13795,7 @@ Reported error: Please enter your Retroshare passphrase - + @@ -13955,7 +13851,7 @@ Reported error: 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). - + @@ -13990,7 +13886,7 @@ Reported error: - 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 @@ -14002,13 +13898,13 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14021,37 +13917,37 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers Profile info - + Name : - Όνομα: + 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: - + <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 - + @@ -14061,7 +13957,7 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers No trust - + @@ -14081,46 +13977,46 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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> - + @@ -14130,32 +14026,32 @@ p, li { white-space: pre-wrap; } <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14165,53 +14061,53 @@ p, li { white-space: pre-wrap; } Options - Επιλογές + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - Use as direct source, when available + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14237,23 +14133,23 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + @@ -14273,22 +14169,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14303,22 +14199,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14395,7 +14291,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14425,7 +14321,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14481,53 +14377,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14535,68 +14431,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - Φήμη + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14687,7 +14583,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14700,7 +14596,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14713,7 +14609,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14860,7 +14756,7 @@ requesting to edit it! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14929,37 +14825,37 @@ p, li { white-space: pre-wrap; }⏎ base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14982,7 +14878,7 @@ p, li { white-space: pre-wrap; }⏎ Widget for plugin %1 not found on plugins frame - + @@ -15000,12 +14896,12 @@ p, li { white-space: pre-wrap; }⏎ Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + @@ -15019,7 +14915,7 @@ p, li { white-space: pre-wrap; }⏎ [loading problem] - + @@ -15062,7 +14958,7 @@ 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> - + @@ -15139,32 +15035,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15197,7 +15093,7 @@ malicious behavior of crafted plugins. You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + @@ -15207,7 +15103,7 @@ malicious behavior of crafted plugins. Submit a new Post - + @@ -15235,12 +15131,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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + @@ -15265,7 +15161,7 @@ malicious behavior of crafted plugins. Links - + @@ -15298,7 +15194,7 @@ malicious behavior of crafted plugins. Update Topic - + @@ -15311,7 +15207,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15327,7 +15223,7 @@ malicious behavior of crafted plugins. Posted Description - + @@ -15337,7 +15233,7 @@ malicious behavior of crafted plugins. New Posted - + @@ -15373,12 +15269,12 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + @@ -15398,12 +15294,12 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + @@ -15476,7 +15372,7 @@ malicious behavior of crafted plugins. Submit a new Post - + @@ -15501,7 +15397,7 @@ malicious behavior of crafted plugins. 1-10 - 1-10 + @@ -15511,19 +15407,15 @@ malicious behavior of crafted plugins. Tabs Καρτέλες - - Posted - Καταχωρήθηκε - Open each topic in a new tab - + Links - + @@ -15585,13 +15477,13 @@ malicious behavior of crafted plugins. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15682,17 +15574,17 @@ and use the import button to load it Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15898,51 +15790,35 @@ and open the Make Friend Wizard. Κάντε κλικ για να προσθέσετε αυτό το RetroShare cert σας και ανοίξτε τον οδηγό φιλων. - - Add file - Προσθηκη το αρχείο - - - Add files - Προσθήκη αρχείων - - - Do you want to process the link ? - Θέλετε να επεξεργάζοτε το σύνδεσμο; - - - Do you want to process %1 links ? - Θέλετε να επεξεργαστεί %1 συνδέσεις; - Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16057,17 +15933,17 @@ and open the Make Friend Wizard. Posted not found - + Posted message not found - + Posted messages not found - + @@ -16077,22 +15953,22 @@ and open the Make Friend Wizard. Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + @@ -16112,7 +15988,7 @@ and open the Make Friend Wizard. Chat room not found - + @@ -16205,36 +16081,36 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16261,17 +16137,17 @@ The error reported is:" Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16279,27 +16155,27 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + @@ -16309,37 +16185,37 @@ Reported error is: TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + @@ -16354,17 +16230,17 @@ Reported error is: Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + @@ -16421,34 +16297,34 @@ Reported error is: Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + This cert is malformed. Error code: - + The following has not been added to your download list, because you already have it: - + @@ -16458,127 +16334,127 @@ Security: no anonymous IDs unable to parse XML file! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - Άγνωστο + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16593,12 +16469,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16721,10 +16597,10 @@ 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: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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -16771,7 +16647,7 @@ p, li { white-space: pre-wrap; }⏎ RetroShare Page Display Style - + @@ -16781,21 +16657,21 @@ p, li { white-space: pre-wrap; }⏎ 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -16810,8 +16686,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -16861,7 +16737,7 @@ p, li { white-space: pre-wrap; } Browsable - + @@ -16871,12 +16747,12 @@ p, li { white-space: pre-wrap; } If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16884,12 +16760,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - Θέλετε να διακόψετε την κοινή χρήση αυτόυ του κατάλογου ? + @@ -16920,12 +16796,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16933,52 +16809,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16986,17 +16862,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -17017,79 +16893,12 @@ p, li { white-space: pre-wrap; } <strong>Κάτω:</strong> 0.00 (kB/s) | <strong>Πάνω:</strong> 0.00 (kB/s) - - RelayPage - - Enable Relay Connections - Ενεργοποιηση συνδέσεων μεταγωγής - - - Use Relay Servers - Χρήση ρελέ διακομιστές - - - Relay options - Ρελέ επιλογές - - - Number - Αριθμός - - - Bandwidth per link - Εύρος ζώνης ανά σύνδεση - - - Total Bandwidth - Συνολικό εύρος ζώνης - - - Friends - Φίλοι - - - kB/s - kB/s - - - Friends of Friends - Φίλοι των φίλων - - - General - Γενικα - - - Total: - Σύνολο: - - - Relay Server Setup - Relay εγκατάσταση διακομιστή - - - Add Server - Προσθέστε το διακομιστή - - - Server DHT Key - DHT κλειδί διακομιστή - - - Remove Server - Κατάργηση διακομιστή - - - Relay - Ρελέ - - RemoteSharedFilesDialog Download... - + @@ -17099,11 +16908,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Συνιστούμε σε ένα μήνυμα για να + @@ -17116,12 +16921,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + @@ -17131,7 +16936,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + @@ -17139,22 +16944,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -17172,28 +16977,28 @@ p, li { white-space: pre-wrap; } Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -17201,32 +17006,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - Τι θέλετε να κάνετε; + Overwrite - Αντικατάσταση + Merge - + Cancel - + @@ -17249,12 +17054,12 @@ p, li { white-space: pre-wrap; } Destination: - + Right click to change download directory - + @@ -17290,7 +17095,7 @@ p, li { white-space: pre-wrap; } 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. Μερικά ονόματα αρχείων ή κατάλογων περιεχουν απαγορευμένους χαρακτήρες. Χαρακτήρες <b>", |, /, \, &lt;&gt;,, *,</b> θα αντικατασταθούν από '_'. @@ -17310,30 +17115,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - - - + - + + Remove Duplicate - + @@ -17343,47 +17140,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - Καθορίσμος... + Choose directory - Επιλογη κατάλογου + @@ -17395,12 +17192,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Real File Count=%1 - + Save Collection File. - + @@ -17415,37 +17212,37 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + @@ -17496,23 +17293,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 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. - - - - What do you want to do? - Τι θέλετε να κάνετε; - - - Overwrite - Αντικατάσταση - - - Cancel - Διακοπη - - - File already exists. - Το αρχείο υπάρχει ήδη. + @@ -17521,128 +17302,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - + Size i.e: file size - + Completed - Ολοκληρωθηκε + Speed i.e: Download speed - Ταχύτητα + Progress / Availability i.e: % downloaded - Πρόοδος / διαθεσιμότητα + Sources i.e: Sources - Πηγές + Status - + Speed / Queue position - Ταχύτητα / ουρά θέσης + Remaining - Απομένουν + Download time i.e: Estimated Time of Arrival / Time left - Χρονος λυψης + Hash - Hash + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - Διαδρομή + Failed - Απέτυχε + Okay - Εντάξει + Waiting - Αναμονή + Downloading - Λυψη + Complete - Ολοκλήρωθηκε + Queued - Στην ουρά + Paused - Σε παύση + Checking... - Έλεγχος... + Unknown - Άγνωστο - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Η εικόνα είναι πολυ μεγαλη για μετάδοση. -Να μειωθει σε %1x%2 πιξελ; + @@ -17650,7 +17422,7 @@ Reducing image to %1x%2 pixels? Invalid format - + @@ -17669,7 +17441,7 @@ Reducing image to %1x%2 pixels? filename - + @@ -17679,7 +17451,7 @@ Reducing image to %1x%2 pixels? level - + @@ -17689,7 +17461,7 @@ Reducing image to %1x%2 pixels? style - + @@ -17699,7 +17471,7 @@ Reducing image to %1x%2 pixels? stylesheet - + @@ -17709,17 +17481,13 @@ Reducing image to %1x%2 pixels? language - + Sets RetroShare's language. Ορίζει το eMule ομάδα + Ultra του γλώσσα. - - RetroShare Usage Information - Πληροφορίες χρήσης RetroShare - Unable to open log file '%1': %2 @@ -17729,7 +17497,7 @@ Reducing image to %1x%2 pixels? Invalid operating mode specified: - + @@ -17739,57 +17507,57 @@ Reducing image to %1x%2 pixels? Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17798,7 +17566,7 @@ Reducing image to %1x%2 pixels? Registry Access Error. Maybe you need Administrator right. - + @@ -18074,7 +17842,7 @@ Reducing image to %1x%2 pixels? Modify Collection... - + @@ -18128,7 +17896,7 @@ Reducing image to %1x%2 pixels? Peer Name: - + @@ -18145,33 +17913,33 @@ Reducing image to %1x%2 pixels? but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -18304,27 +18072,27 @@ Reducing image to %1x%2 pixels? Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18337,7 +18105,7 @@ Reducing image to %1x%2 pixels? Network Mode - Τυπος δικτυου + @@ -18383,7 +18151,7 @@ Reducing image to %1x%2 pixels? NAT - + @@ -18421,15 +18189,11 @@ Reducing image to %1x%2 pixels? Known / Previous IPs: Γνωστα / προηγούμενα IPs: - - Show Discovery information in statusbar - Εμφάνιση πληροφοριών ανακάλυψης στο statusbar - 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. Εάν καταργήσετε την επιλογή αυτή, το RetroShare μπορεί να καθορίσει μόνο IP σας όταν συνδέεστε σε κάποιον. Αφήνοντας αυτό ελέγχεται βοηθά τη σύνδεση όταν έχετε μερικούς φίλους. Βοηθά επίσης εάν είστε πίσω από ένα τείχος προστασίας ή ένα VPN. @@ -18450,12 +18214,12 @@ behind a firewall or a VPN. Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + @@ -18465,69 +18229,69 @@ behind a firewall or a VPN. Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18536,133 +18300,133 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - Άγνωστο + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + @@ -18672,159 +18436,159 @@ Also check your ports! 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Εναρξη + Restart - + Stop - Παυση + BOB status - + Incoming - Εισερχόμενα + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18838,101 +18602,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - Ρελέ + Enable Relay Connections - Ενεργοποιηση συνδέσεων μεταγωγής + Use Relay Servers - Χρήση ρελέ διακομιστές + Relay options - Ρελέ επιλογές + Number - Αριθμός + Bandwidth per link - Εύρος ζώνης ανά σύνδεση + Total Bandwidth - Συνολικό εύρος ζώνης + Friends - Φίλοι + Friends of Friends - + General - + Total: - Σύνολο: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Relay εγκατάσταση διακομιστή + Add Server - Προσθέστε το διακομιστή + Server DHT Key - DHT κλειδί διακομιστή + Remove Server - Κατάργηση διακομιστή + - <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>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> - + @@ -18942,23 +18706,23 @@ If you have issues connecting over Tor check the Tor logs too. IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18972,13 +18736,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + @@ -18990,124 +18754,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -19125,77 +18889,77 @@ 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> - + <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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -19208,22 +18972,22 @@ If you have issues connecting over Tor check the Tor logs too. Service Permissions - + Use as direct source, when available - Use as direct source, when available + Auto-download recommended files - + Require whitelist - + @@ -19231,7 +18995,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -19246,12 +19010,12 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + @@ -19259,7 +19023,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + @@ -19267,7 +19031,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -19285,13 +19049,13 @@ If you have issues connecting over Tor check the Tor logs too. Share - + 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. - + @@ -19309,32 +19073,32 @@ Select the Friends with which you want to Share your Channel. Shared directory - + Visible name - + Access - + Visibility - Ορατότητα + Add new - + Cancel - + @@ -19359,52 +19123,52 @@ Select the Friends with which you want to Share your Channel. Choose directory - Επιλογη κατάλογου + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19419,7 +19183,7 @@ Select the Friends with which you want to Share your Channel. Choose a directory to share - + @@ -19440,7 +19204,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. - + @@ -19453,11 +19217,7 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - - - - Search files - Αναζήτηση αρχείων + @@ -19529,18 +19289,10 @@ Select the Friends with which you want to Share your Channel. Send retroshare Links Αποστολη των retroshare Λινκ - - Send retroshare Links to Cloud - Αποστολη ενος RetroShare λινκ - - - Add Links to Cloud - Προσθήκη συνδέσεων σε σύννεφο - Some files have been omitted - + @@ -19561,7 +19313,7 @@ Select the Friends with which you want to Share your Channel. Modify Collection... - + @@ -19576,17 +19328,17 @@ Select the Friends with which you want to Share your Channel. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19599,12 +19351,12 @@ Select the Friends with which you want to Share your Channel. Go Online - + Chatmessage - + @@ -19620,7 +19372,7 @@ Select the Friends with which you want to Share your Channel. Message arrived - + @@ -19635,7 +19387,7 @@ Select the Friends with which you want to Share your Channel. Lobby - + @@ -19678,7 +19430,7 @@ Select the Friends with which you want to Share your Channel. Default - Προεπιλογή + @@ -19686,20 +19438,16 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + SplashScreen - - Load profile - Φορτωση του προφιλ - Load configuration @@ -19718,15 +19466,11 @@ Select the Friends with which you want to Share your Channel. RetroShare RetroShare - - Login - Σύνδεση - Password - Κωδικος + @@ -19750,9 +19494,9 @@ The current identities/locations will not be affected. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19767,7 +19511,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -19783,7 +19527,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19792,7 +19536,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19801,7 +19545,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19855,12 +19599,12 @@ This choice can be reverted in settings. ServicePermissions - + Service permissions matrix - + @@ -19875,17 +19619,17 @@ This choice can be reverted in settings. Turtle Router - + Global Router - + Gxs Transport - + @@ -19992,7 +19736,7 @@ This choice can be reverted in settings. Connected: I2P - + @@ -20007,57 +19751,57 @@ This choice can be reverted in settings. TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -20077,7 +19821,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -20090,7 +19834,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -20186,7 +19930,7 @@ p, li { white-space: pre-wrap; }⏎ Remove this item - + @@ -20328,12 +20072,12 @@ p, li { white-space: pre-wrap; }⏎ All Toasters are disabled - + Toasters are enabled - + @@ -20341,58 +20085,58 @@ p, li { white-space: pre-wrap; }⏎ Dialog - Διαλόγος + Setting up Tor... - + Tor status: - + Unknown - Άγνωστο + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20400,28 +20144,28 @@ p, li { white-space: pre-wrap; }⏎ Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20439,98 +20183,98 @@ p, li { white-space: pre-wrap; }⏎ Shared Directories - + Automatically share incoming directory (Recommended) - Διαμοιράζονται αυτόματα τα Εισερχόμενα κατάλογο (συνιστάται) + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - Περιγραφη + Partials Directory - + Maximum uploads per friend (0 = no limit) - + @@ -20545,12 +20289,12 @@ p, li { white-space: pre-wrap; }⏎ End-to-end encryption: - + Allow direct download: - + @@ -20575,50 +20319,50 @@ p, li { white-space: pre-wrap; }⏎ <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Ναι + No - Όχι + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + @@ -20628,32 +20372,32 @@ 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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20715,21 +20459,6 @@ p, li { white-space: pre-wrap; } Completed Ολοκληρωθηκε - - Speed - i.e: Download speed - Ταχύτητα - - - Progress / Availability - i.e: % downloaded - Πρόοδος / διαθεσιμότητα - - - Sources - i.e: Sources - Πηγές - Status @@ -20745,16 +20474,6 @@ p, li { white-space: pre-wrap; } Remaining Απομένουν - - Download time - i.e: Estimated Time of Arrival / Time left - Χρονος λυψης - - - Peer - i.e: user name - Peer - Progress @@ -20809,7 +20528,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Peer + @@ -20931,7 +20650,7 @@ 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> - + @@ -20958,75 +20677,16 @@ p, li { white-space: pre-wrap; } Choose directory Επιλογη κατάλογου - - Failed - Απέτυχε - - - Okay - Εντάξει - - - Waiting - Αναμονή - - - Downloading - Λυψη - - - Complete - Ολοκλήρωθηκε - - - Queued - Στην ουρά - - - Paused - Σε παύση - - - Checking... - Έλεγχος... - - - Unknown - Άγνωστο - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Εάν the hash του η λήψη δεδομένων δεν αντιστοιχεί σε hash ανακοίνωση από το αρχείο προέλευσης. Τα δεδομένα είναι πιθανό να είναι κατεστραμμένα. - - Το RetroShare θα ζητήσει έναν λεπτομερή χάρτη των δεδομένων? θα συγκρίνει και θα ακυρώνει χαλασμένους τομείς, και να κατεβάσετε ξανά προσπαθήστε να είστε υπομονετικοί! - - - Transferring - Μεταφερεται - - - Uploading - Φόρτωμα - Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + @@ -21090,13 +20750,13 @@ Try to be patient! Expand all - Επεκταση ολων + Collapse all - Σύμπτυξη όλων + @@ -21106,12 +20766,12 @@ Try to be patient! Show Size Column - + Show Completed Column - + @@ -21126,12 +20786,12 @@ Try to be patient! Progress / Availability - Πρόοδος / διαθεσιμότητα + Show Progress / Availability Column - + @@ -21141,47 +20801,47 @@ Try to be patient! Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - Χρονος λυψης + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + @@ -21191,12 +20851,7 @@ Try to be patient! File Transfers - - - - Path - i.e: Where file is saved - Διαδρομή + @@ -21206,17 +20861,17 @@ Try to be patient! Show Path Column - + Could not delete preview file - + Try it again? - + @@ -21226,7 +20881,7 @@ Try to be patient! Modify Collection... - + @@ -21241,21 +20896,17 @@ Try to be patient! %1 tunnels - + Anonymous tunnel 0x - - - - version: - έκδοση: + Files - + @@ -21287,7 +20938,7 @@ Try to be patient! Empty - + @@ -21298,7 +20949,7 @@ Try to be patient! Friends Directories [updating...] - + @@ -21308,7 +20959,7 @@ Try to be patient! My Directories [updating...] - + @@ -21318,7 +20969,7 @@ Try to be patient! # Files - + @@ -21338,22 +20989,22 @@ Try to be patient! Access - + Visibility - Ορατότητα + Column %1 - + Row %1 - + @@ -21402,7 +21053,7 @@ Try to be patient! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21448,12 +21099,12 @@ Try to be patient! Anonymous tunnels - + Authenticated tunnels - + @@ -21463,7 +21114,7 @@ Try to be patient! Turtle Router - + @@ -21511,7 +21162,7 @@ Try to be patient! Forwarded data - + @@ -21640,7 +21291,7 @@ Try to be patient! Enable Retroshare WEB Interface - + @@ -21650,47 +21301,47 @@ Try to be patient! Port: - Υποδοχη: + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21918,7 +21569,7 @@ Try to be patient! Show Wiki Group - + @@ -22089,7 +21740,7 @@ Try to be patient! Update Group - + @@ -22319,134 +21970,133 @@ Try to be patient! Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - Τελευταία χρησιμοποιείμενοι + Personal signature - Προσωπική υπογραφή + Marginally trusted peer - Οριακά αξιόπιστο peer + Fully trusted peer - Πλήρως αξιόπιστο peer + Untrusted peer - Μη αξιόπιστο peer + Yes - Ναι + No - Όχι + Last hour - Τελευταία ώρα + Today - Σήμερα + Never - Ποτέ + %1 days ago - %1 ημέρες πριν + Accepted - + - - + PGP key signed by you - Το PGP κλειδί υπογράφεται από εσάς + has authenticated you. Right-click and select 'make friend' to be able to connect. - έχει γίνει έλεγχος ταυτότητας σας. -Κάντε δεξί κλικ και επιλέξτε «κάνει φίλο» να είναι σε θέση να συνδεθείτε. + - + \ 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 152ebdfca..c0d639a4c 100644 Binary files a/retroshare-gui/src/lang/retroshare_es.qm and b/retroshare-gui/src/lang/retroshare_es.qm differ diff --git a/retroshare-gui/src/lang/retroshare_es.ts b/retroshare-gui/src/lang/retroshare_es.ts index 3cde99046..8ce2a5f65 100644 --- a/retroshare-gui/src/lang/retroshare_es.ts +++ b/retroshare-gui/src/lang/retroshare_es.ts @@ -1,6 +1,4 @@ - - - + AWidget @@ -81,7 +79,7 @@ Only Hidden Node - + Sólo nodo oculto @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Lo siento, no se ha encontrado el comando de sistema por defecto para este archivo @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -595,17 +593,17 @@ p, li { white-space: pre-wrap; } Icon Size = 8x8 - Tamaño del icono = 8x8 + Tamaño de icono = 8x8 Icon Size = 16x16 - Tamaño del icono = 16x16 + Tamaño de icono = 16x16 Icon Size = 24x24 - Tamaño del icono = 24x24 + Tamaño de icono = 24x24 @@ -645,7 +643,7 @@ p, li { white-space: pre-wrap; } Show DHT Status - Mostrar estado de la DHT + Mostrar estado de DHT @@ -665,7 +663,7 @@ p, li { white-space: pre-wrap; } Show Status ComboBox - + Mostrar recuadro combinado de estado @@ -690,7 +688,7 @@ p, li { white-space: pre-wrap; } Disable SysTray ToolTip - Deshabilitar sugerencia de bandeja de sistema + Deshabilitar sugerencias en bandeja de sistema @@ -710,7 +708,7 @@ p, li { white-space: pre-wrap; } Icon Size = 32x32 - Tamaño del icono = 32x32 + Tamaño de icono = 32x32 @@ -875,7 +873,7 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Changes the transparency of the Bandwidth Graph - Cambia la transparencia de la gráfica del tráfico de red + Cambia la transparencia de la gráfica de tráfico de red @@ -935,12 +933,12 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Average - Normal + Media Total - + Total @@ -958,7 +956,7 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro In (KB/s) - Entrante (KB/s) + Entrada (KB/s) @@ -968,42 +966,42 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro InQueue - Entrante en cola + Cola de entrada InAllocated (KB/s) - Entrante asignado (KB/s) + Entrada asignada (KB/s) Allocated Sent - Asignado enviado + Enviado asignado Out (KB/s) - Saliente (KB/s) + Salida (KB/s) OutMax (KB/s) - Máximo saliente (KB/s) + Máximo de salida (KB/s) OutQueue - Saliente en cola + Cola de salida OutAllowed (KB/s) - Saliente permitido (KB/s) + Salida permitida (KB/s) Allowed Recvd - Permitido recibido + Recibido permitido @@ -1061,17 +1059,17 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Legend: - + Leyenda: Current - + Actual Total - + Total @@ -1099,7 +1097,7 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Load posts in background (Thread) - Cargar posts en segundo plano (hilo) + Cargar mensajes en segundo plano (hilo) @@ -1109,10 +1107,6 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro ChatLobbyDialog - - Participants - Participantes - Name @@ -1168,10 +1162,6 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Topic: %1 Tema: %1 - - Lobby management - Administración de sala - %1 changed his name to: %2 @@ -1180,7 +1170,7 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Right click to mute/unmute participants<br/>Double click to address this person<br/> - Haga clic secundario para silenciar/desilenciar participantes<br/>Doble clic para hablar con esta persona<br/> + Clic secundario para silenciar/desilenciar participantes<br/>Doble clic para hablar con esta persona<br/> @@ -1278,7 +1268,7 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Chat room management - + Administracion de sala de chat @@ -1421,17 +1411,17 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro Copy RetroShare Link - Copiar enlace de RetroShare + Copiar enlace de RetroShare You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - No puede unirse a esta sala de chat con su identidad por defecto, ya que esta es anónima y la sala de chat lo prohíbe. + No puede unirse a esta sala de chat con su identidad predeterminada, ya que esta es anónima y la sala de chat lo prohíbe. You're not subscribed to this chat room; Double click-it to enter and chat. - No está suscrito a esta sala de chat. Haga doble clic para entrar y chatear. + No está suscrito a esta sala de chat. Haga doble clic para entrar y conversar. @@ -1441,7 +1431,7 @@ Pero recuerde: Todos los datos aquí *SE PERDERÁN* cuando se actualicen los pro You will need to create an identity in order to join chat rooms. - Tendrá que crear una identidad para unirse a las salas de chat. + Tendrá que crear una identidad para unirse a salas de chat. @@ -1460,7 +1450,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Choose a non anonymous identity for this chat room: - + Escoja una identidad no anónima para esta sala de chat: @@ -1476,7 +1466,7 @@ Haga doble clic en una sala de chat para entrar y conversar. [No topic provided] - [Ningún tema propuesto] + [No se ha proporcionado tema] @@ -1586,12 +1576,12 @@ Haga doble clic en una sala de chat para entrar y conversar. Default identity is anonymous - La identidad por defecto es anónima + La identidad predeterminada es anónima No anonymous IDs - No se aceptan identificaciones anónimas + Sin identificaciones anónimas @@ -1668,7 +1658,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Distant Chat - Chat remoto + Chat distante @@ -1688,7 +1678,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Accept encrypted distant chat from - Aceptar chat remoto cifrado de + Aceptar chat distante cifrado de @@ -1758,7 +1748,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Blink tab icon - Parpadear icono de la pestaña + Icono de pestaña intermitente @@ -1778,17 +1768,17 @@ Haga doble clic en una sala de chat para entrar y conversar. Grab Focus when chat arrives - Enfocar ventana cuando llegue un chat + Adquirir el foco cuando llegue un chat Use a single tabbed window - Usar solo una ventana con pestañas + Usar una única ventana con pestañas Blink window/tab icon - Parpadear icono de la ventana/pestaña + Icono de ventana/pestaña intermitente @@ -1798,7 +1788,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Change Chat Font - Cambiar la fuente del chat + Cambiar fuente del chat @@ -1821,20 +1811,20 @@ Haga doble clic en una sala de chat para entrar y conversar. Style: - + Estilo: Variant: - + Variante: Group chat - Chat de grupo + Chat en grupo @@ -1845,7 +1835,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Choose your default font for Chat. - + Escoja su fuente predeterminada para Chat. @@ -1902,10 +1892,6 @@ Haga doble clic en una sala de chat para entrar y conversar. /me is sending a message with /me /me está enviando un mensaje con /me - - Chat - 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> @@ -2014,7 +2000,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Chats - Chats + Chats @@ -2096,7 +2082,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Insert emoticon - + Insertar emoticono @@ -2106,7 +2092,7 @@ Haga doble clic en una sala de chat para entrar y conversar. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> @@ -2152,7 +2138,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Choose font - Elejir la fuente + Elegir la fuente @@ -2203,7 +2189,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Show Hidden Images - + Mostrar imágenes ocultas @@ -2227,7 +2213,7 @@ after HTML conversion. Choose your font. - + Escoja su fuente. @@ -2262,11 +2248,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Los mensajes enviados se entregarán cuando su amigo vuelva a conectarse + Los mensajes que envía se entregarán después de que el amigo vuelva a estar en línea. @@ -2354,18 +2336,19 @@ after HTML conversion. Person id: - + Identificación persona: Double click on it to add his name on text writer. - + +Haga doble clic sobre este para añadir su nombre en el compositor de texto. Unsigned - + No firmado @@ -2550,10 +2533,6 @@ Double click on it to add his name on text writer. Details Detalles - - Peer Address - Dirección del vecino - @@ -2568,12 +2547,12 @@ Double click on it to add his name on text writer. Node info: - + Información de nodo: Current address: - + Dirección actual: @@ -2586,10 +2565,6 @@ Double click on it to add his name on text writer. Port Puerto - - Addresses list - Lista de direcciones - Include signatures @@ -2612,16 +2587,12 @@ Double click on it to add his name on text writer. Encryption - Encriptación + Cifrado Not connected - No esta conectado - - - Peer Addresses - Direcciones del vecino + No conectado @@ -2656,17 +2627,17 @@ Double click on it to add his name on text writer. Name: - Nombre: + Nombre: Status message: - + Mensaje de estado: List of known addresses: - + Lista de direcciones conocidas: @@ -2756,7 +2727,8 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &Enviar una invitación por correo + (Su amigo recibirá un correo electrónico con instrucciones sobre cómo descargar RetroShare) @@ -2782,12 +2754,12 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Abrir certificado de su amigo desde fichero Open certificate - + Abrir certificado @@ -2797,27 +2769,27 @@ Double click on it to add his name on text writer. Certificate files - Archivos de certificados GPG + Archivos de certificados PGP Use PGP certificates saved in files. - Usar certificados GPG guardados en archivos. + Usar certificados PGP guardados en archivos. Import friend's certificate... - Importar certificado GPG de un amigo... + Importar certificado PGP de un amigo... You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - Tiene que crear un archivo con su certificado GPG y enviárselo a un amigo. También puede usar un archivo generado anteriormente. + Tiene que crear un archivo con su certificado PGP y enviárselo a un amigo. También puede usar un archivo generado anteriormente. Export my certificate... - Exportar mi certificado GPG... + Exportar mi certificado PGP... @@ -2847,7 +2819,7 @@ Double click on it to add his name on text writer. Make friend with these peers - Hacer amigos estos vecinos + Hacer amistad con estos vecinos @@ -3015,12 +2987,6 @@ recursos. &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 @@ -3029,22 +2995,22 @@ recursos. RetroShare certificate - + Certificado de RetroShare Please paste below your friend's Retroshare certificate - + Por favor, pegue debajo el certificado de RetroShare de su amigo Paste certificate - + Pegar certificado <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile 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 de RetroShare de su amigo. ADVERTENCIA: Este es distinto de la clave del perfil de su amigo. No pegue aquí la clave del perfil de su amigo (ni siquiera una parte de ella). No va a funcionar.</p></body></html> @@ -3056,7 +3022,7 @@ recursos. Authenticate friend (Sign PGP Key) - Autenticar amigo (firmar la clave GPG) + Autenticar amigo (firmar la clave PGP) @@ -3093,7 +3059,7 @@ recursos. Key validity: - Validez de la llave: + Validez de la clave: @@ -3103,7 +3069,7 @@ recursos. <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> + <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 a sus otros amigos. Las firmas de debajo atestiguan criptográficamente que los titulares de las claves listadas reconocen como auténtica la clave PGP actual.</span></p></body></html> @@ -3159,22 +3125,22 @@ recursos. Cannot get peer details of PGP key %1 - No se puede obtener detalles de pares con llave GPG %1 + No se pudieron obtener los detalles del vecino con clave PGP %1 Any peer I've not signed - Vecinos a quienes no he firmado las llaves GPG + Vecinos a quienes no he firmado las claves PGP Friends of my friends who already trust me - Amigos de amigos que me han firmado la llave GPG + Amigos de amigos que me han firmado la clave PGP Signed peers showing as denied - Vecinos bloqueados a quienes he firmado la llave GPG + Vecinos bloqueados a quienes he firmado la llave PGP @@ -3194,12 +3160,12 @@ recursos. Certificate appears to be valid - + El certificado parece ser válido Not a valid Retroshare certificate! - + ¡No es un certificado RetroShare válido! @@ -3212,31 +3178,33 @@ recursos. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Advertencia: En su opción de Transferencia-de-fichero, establezca permitir descarga directa a Sí. Warning: In your File-Transfer option, you select allow direct download to No. - + +Advertencia: En su opción de Transferencia-de-fichero, establezca permitir descarga directa a No. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + ¿Este es su propio certificado? No querría hacerse amigo de si mismo. ¿No es así? This key is already on your trusted list - + Esta clave ya está en su lista de confianza You have already signed this key - + Ya ha firmado esta clave @@ -3272,7 +3240,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Certificate Load Failed:file %1 not found - La carga del certificado GPG ha fallado: archivo %1 no encontrado + La carga del certificado PGP ha fallado: archivo %1 no encontrado @@ -3325,7 +3293,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - Certificados GPG de RetroShare (*.rsc );;Todos los archivos (*) + Certificados PGP de RetroShare (*.rsc );;Todos los archivos (*) @@ -3336,23 +3304,23 @@ Warning: In your File-Transfer option, you select allow direct download to No. Sorry, create certificate failed - Lo siento, la creación del certificado GPG ha fallado + Lo sentimos, la creación del certificado PGP ha fallado Please choose a filename - Por favor elija un nombre para el archivo + Por favor, elija un nombre para el archivo Certificate file successfully created - Certificado GPG creado con éxito + Certificado PGP creado con éxito Sorry, certificate file creation failed - Lo siento, la creación del archivo del certificado GPG ha fallado + Lo siento, la creación de archivo de certificado PGP ha fallado @@ -3377,27 +3345,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + Mostrar opciones avanzadas <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> + <html><head/><body><p><span style=" font-size:10pt;">Firmar una 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 la propia confianza de usted. Firmar una clave es absolutamente opcional y no se puede deshacer, así que hágalo juiciosamente. </span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - <html><head/><body><p align="justify">RetroShare comprueba periódicamente las listas de su amigo en busca de ficheros navegables que coincidan con sus transferencias, para establecer una transferencia directa. En este caso, su amigo sabe que usted está descargando el fichero.</p><p align="justify">Para evitar este comportamiento, sólo para este amigo, desmarque esta casilla. Aún podrá realizar una transferencia directa si la pide explícitamente, por ejemplo, descargándolo de la lista de ficheros de su amigo. Esta configuración se aplica a todas las ubicaciones del mismo nodo.</p></body></html> + <html><head/><body><p align="justify">RetroShare comprueba periódicamente sus listas de amigos en busca de ficheros explorables que coincidan con sus transferencias, para establecer una transferencia directa. En tal caso, su amigo sabe que usted está descargando el fichero.</p><p align="justify">Para evitar este comportamiento sólo para este amigo, desmarque esta casilla. Aún puede efectuar una transferencia directa si la pide explícitamente, por ejemplo, descargando de la lista de ficheros de su amigo. Está ajuste se aplica a todas las ubicaciones del mismo nodo.</p></body></html> <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. Applied to all locations of the same node.</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. Se aplica a todas las ubicaciones del mismo nodo.</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. Se aplica a todas las ubicaciones del mismo nodo.</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. Applies to all locations of the same node.</p></body></html> - <html><head/><body><p>Los vecinos que tengan esta opción no pueden conectar si la dirección de su conexión no está en la lista blanca. Esto le protege a usted de ataques de reenvío de tráfico. Cuando lo use, se informará de los vecinos rechazados mediante &quot;elementos de la suscripción (feed) de seguridad&quot; en la sección de Suscripción de Noticias. Desde allí, puede incluir sus IPs en lista blanca/negra. Se aplica a todas las ubicaciones del mismo nodo.</p></body></html> + <html><head/><body><p>Los vecinos que tengan esta opción no pueden conectar si la dirección de su conexión no está en la lista blanca. Esto le protege de ataques de reenvío de tráfico. Cuando lo use, se informará de los vecinos rechazados mediante &quot;elementos de seguridad de la suscripción (feed)&quot; en la sección de Suscripción de Noticias. Desde allí, puede incluir sus IPs en lista blanca/negra. Se aplica a todas las ubicaciones del mismo nodo.</p></body></html> @@ -3500,7 +3468,7 @@ incluso si no hace amigos. <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>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> + <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 vecino generará una advertencia de seguridad en la pestaña de Novedades (feed). Desde allí puede añadir su IP a la lista blanca.</p> @@ -3597,13 +3565,21 @@ incluso si no hace 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lucida Grande'; font-size:13pt;">Este Widget muestra el progreso de su conexión a su nuevo vecino.</span></p> +<p 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;">Es útil para solucionar de problemas.</span></p> +<p style="-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;"><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:'Lucida Grande'; font-size:13pt;">Si es un usuario experto de RS, o confía en que RS hacrá lo correcto</span></p> +<p 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;">puede cerrarlo.</span></p></body></html> @@ -3967,26 +3943,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Por favor, intenta volver a importar el certificado completo - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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">⏎ -<html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ -p, li { white-space: pre-wrap; }⏎ -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">⏎ -<p 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;">Este diálogo muestra el progreso de tu conexión con tu nuevo vecino.</span></p>⏎ -<p 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;">És útil para solucionar problemas.</span></p>⏎ -<p style="-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;">Si eres un usuario experto de RS o confías en que RS hará lo que es debido</span></p>⏎ -<p 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;">puedes cerrarlo.</span></p></body></html> - @@ -4049,12 +4005,12 @@ p, li { white-space: pre-wrap; }⏎ <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>El nombre, contacto del autor y lista de miembros invitados del círculo será visible para todos los miembros invitados. Si el círculo no es privado, también será visible a los nodos vecinos de los nodos que alojen a los miembros invitados.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + <html><head/><body><p>El creador del un círuclo es puramente opcional. Sin embargo, es útil para los círculos públicos, para que la gente sepa con quién discutir aspectos de la membresía.</p></body></html> @@ -4107,19 +4063,11 @@ p, li { white-space: pre-wrap; }⏎ Name: Nombre: - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - <html><head/><body><p>El nombre del círculo, el autor del contacto y la lista de miembros invitados serán visibles para todos los miembros invitados. Si el círculo no es privado, también será visible para los nodos vecinos de los nodos que alojan a los miembros invitados.</p></body></html> - Contact author: Autor del contacto: - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - <html><head/><body><p>El creador de un círculo es puramente opcional. Sin embargo, es útil para círculos públicos a fin de que la gente sepa con quién discutir los aspectos de la membresía.</p></body></html> - [Circle Admin] @@ -4330,9 +4278,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4454,7 +4402,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Editar mensaje del canal @@ -4513,7 +4461,7 @@ p, li { white-space: pre-wrap; } Edit Message - + Editar mensaje @@ -4545,13 +4493,14 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Cancelar mensaje del foro Forum Message has not been sent yet! Do you want to discard this message? - + ¡El mensaje del foro aún no se ha enviado! +¿Quiere descartar este mensaje? @@ -4584,16 +4533,6 @@ Do you want to discard this message? Send Enviar - - Forum Message - Mensaje del foro - - - Forum Message has not been Sent. -Do you want to reject this message? - El mensaje del foro no ha sido enviado. -¿Quiere rechazar este mensaje? - Post as @@ -4743,7 +4682,7 @@ Do you want to reject this message? Save Key into a file - Guardar mi llave en un archivo + Guardar mi clave en un archivo @@ -4768,7 +4707,7 @@ Do you want to reject this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - Su llave GPG privada ha sido copiada al portapapeles, péguela y mándesela a su amigos por email u otro medio + Su clave pública se ha copiado al portapapeles, péguela y envíesela a su amigos por correo electrónico u otro medio @@ -4778,7 +4717,7 @@ Do you want to reject this message? RetroShare Certificate (*.rsc );;All Files (*) - Certificados GPG de RetroShare (*.rsc );;Todos los archivos (*) + Certificados PGP de RetroShare (*.rsc );;Todos los archivos (*) @@ -4903,17 +4842,17 @@ Do you want to reject this message? Faster - Más rápido + Más rápido Average - Normal + Media Slower - Más lento + Más lento @@ -4951,7 +4890,7 @@ Do you want to reject this message? Needs checking - Comprobando necesidades + Necesita verificación @@ -5074,7 +5013,7 @@ Do you want to reject this message? Key - Llave + Clave @@ -5844,7 +5783,7 @@ Do you want to reject this message? # Files - + # Ficheros @@ -5874,12 +5813,12 @@ Do you want to reject this message? Column %1 - + Columna %1 Row %1 - + Fila %1 @@ -5899,10 +5838,6 @@ Do you want to reject this message? Expand new messages Abrir mensajes nuevos - - Forum - Foro - Load embedded images @@ -5911,12 +5846,12 @@ Do you want to reject this message? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + <html><head/><body><p>Esta opción es costosa y está en los planes del desarrollador mejorarla. Entre tanto está deshabilitada por defecto. Si la habilita, y los posts de foro largos tardan unos momentos en mostrarse, entonces deshabilítela de nuevo. </p></body></html> Load emoticons (costly) - + Cargar emoticonos (costosa) @@ -5931,7 +5866,7 @@ Do you want to reject this message? Forums - Foros + Foros @@ -5945,7 +5880,7 @@ Do you want to reject this message? ID - + Identidad @@ -5981,7 +5916,7 @@ Do you want to reject this message? Trusted nodes - + Nodos de confianza @@ -6034,7 +5969,7 @@ Do you want to reject this message? Search ID - Buscar identificación + Buscar identidad @@ -6044,12 +5979,12 @@ Do you want to reject this message? Profile details - + Detalles del perfil Deny connections - Denegar conexiones + Denegar conexiones @@ -6074,17 +6009,17 @@ Do you want to reject this message? Send message to this node - + Enviar mensaje a este nodo Node details - + Detalles del nodo Recommend this node to... - + Recomendar este nodo a... @@ -6175,10 +6110,6 @@ al menos un vecino no fue añadido al grupo Error Error - - Failed to get a file! - ¡No se pudo obtener un fichero! - File is not writeable! @@ -6196,7 +6127,7 @@ al menos un vecino no fue añadido al grupo Show Items - + Mostrar elementos @@ -6249,42 +6180,42 @@ al menos un vecino no fue añadido al grupo Dialog - Diálogo + Cuadro de diálogo Message: - Mensage: + Mensaje: Recommend friends - Recomendar amigos + Recomendar amigos To - A + A Please select at least one friend for recommendation. - Por favor, seleccione al menos un amigo por recomendación. + Por favor, seleccione al menos un amigo para recomendación. Please select at least one friend as recipient. - Por favor, seleccione al menos un amigo como destinatario. + Por favor, seleccione al menos un amigo como destinatario. Recommendation messages sent! - + ¡Mensajes de recomendación enviados! A recommendation message was sent to each of the chosen friends! - + ¡Se envió un mensaje de recomendación a cada uno de los amigos elegidos! @@ -6320,7 +6251,7 @@ al menos un vecino no fue añadido al grupo Filter only connected - + Filtro sólo conectado @@ -6335,7 +6266,7 @@ al menos un vecino no fue añadido al grupo Mark all - Mark todo + Marcar todo @@ -6437,7 +6368,7 @@ al menos un vecino no fue añadido al grupo Keyring - Llavero + Juego de claves @@ -6483,14 +6414,6 @@ al menos un vecino no fue añadido al grupo All fields are required with a minimum of 3 characters Todos los campos requieren como mínimo 3 letras - - Password (check) - Contraseña (comprobado) - - - [Required] Type the same password again here. - [Requerido] Escribe la misma contraseña otra vez aquí. - Passwords do not match @@ -6504,7 +6427,7 @@ al menos un vecino no fue añadido al grupo Use BOB - + Usar BOB @@ -6512,19 +6435,11 @@ al menos un vecino no fue añadido al grupo This password is for PGP Esta contraseña es para PGP - - Generate new node - Generar nuevo nodo - You can use it now to create a new node. Ahora puede usarla para crear un nodo nuevo. - - Invalid hidden node - Nodo oculto no válido - Node field is required with a minimum of 3 characters @@ -6535,99 +6450,81 @@ al menos un vecino no fue añadido al grupo 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. - - - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - Parece que no existe ningún perfil (par de claves PGP). Por favor, rellene el formulario de debajo para crear uno, o importe un perfil existente. - - - No node exists for this profile. - No existe ningún nodo para este perfil. - Options - Opciones + Opciones PGP Key Length - + Tamaño de la clave PGP <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Introduzca aquí una contraseña robusta. ¡Esta contraseña protege la clave privada de su nodo!</p></body></html> <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + <html><head/><body><p>Por favor, mueva su ratón al azar para adquirir tanta aleatoriedad como sea posible. Se necesita un mínimo del 20% para crear las claves de su nodo.</p></body></html> Standard node - + Nodo estándar TOR/I2P Hidden node - + Nodo oculto TOR/I2P <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + <html><head/><body><p>El nombre de su nodo designa la instancia de RetroShare que</p><p>se ejecutará en esta máquina.</p></body></html> Use existing profile - + Usar perfil existente Node name - + Nombre del nodo <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + <html><head/><body><p>El nombre del perfil le identifica en la red.</p><p>Es usado por sus amigos para aceptar conexiones de usted.</p><p>Puede crear múltiples nodos de RetroShare con el</p><p>mismo perfil en distintas máquinas.</p><p><br/></p></body></html> Export this profle - + Exportar este perfil <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Esto debe 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 Tor o bien I2P para crear un nuevo servicio oculto / túnel de servidor. </p><p> También puede dejar esto en blanco ahora, pero su nodo sólo funcionará si establece correctamente la dirección del servicio Tor/I2P en el panel de configuración Opciones-&gt;Red-&gt;Servicio oculto.</p></body></html> <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + <html><head/><body><p>Las identidades se usan cuando escribe en salas de chat, foros y comentarios de canal.</p><p>También reciben/envían correo electrónico sobre la red RetroShare. Puede crear</p><p>ahora una identidad firmada, o hacerlo más tarde cuando le sea necesaria.</p></body></html> Go! - + ¡Vamos! TextLabel - + EtiquetaTexto @@ -6650,25 +6547,11 @@ Como alternativa puede usar un perfil existente. Simplemente desmarque "Cre <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>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> - - PGP key length - Tamaño de clave PGP - Click to create your node and/or profile Haga clic para crear su nodo y/o perfil - - Generate new profile and node - Generar nuevo perfil y nodo - - - 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" - Bienvenido a RetroShare. Antes de que continúe tiene que crear un perfil y asociar un nodo con él. Para hacerlo así, por favor, rellene este formulario. -Como alternativa puede importar un perfil (previamente exportado). Simplemente desmarque "Crear un nuevo perfil" - Export profile @@ -6716,62 +6599,62 @@ y usar el botón Importar para cargarlo Create new profile and new Retroshare node - + Crear nuevo perfil y nuevo nodo RetroShare Create new Retroshare node - + Crear nuevo nodo RetroShare Tor/I2P address - + Dirección Tor/I2P Username - + Nombre de usuario Chat name - + Nombre del chat Password again - + Contraseña de nuevo <p>Node creation is disabled until all fields correctly set.</p> - + <p>La creación de nodo está deshabilitada hasta que todos los campos estén establecidos correctamente.</p> <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + <p>La creación de nodo está deshabilitada hasta que se recoja suficiente aleatoriedad. Por favor, mueva su ratón hasta que alcance al menos el 20%.</p> I2P instance address with BOB enabled - + Dirección de instancia de I2P con BOB habilitado I2P instance address - + Dirección de instancia de I2P hidden service address - + dirección de servicio oculto RetroShare profile files (*.asc);;All files (*) - + Ficheros de perfil RetroShare (*.asc);;Todos los ficheros (*) @@ -6796,16 +6679,12 @@ y usar el botón Importar para cargarlo The GXS nickname is too short. Please input at least %1 characters. - + El apodo GXS es demasiado corto. Por favor, introduzca al menos %1 caracteres. The GXS nickname is too long. Please reduce the length to %1 characters. - - - - 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 + El apodo GXS es demasiado largo. Por favor, reduzca el tamaño a %1 caracteres. @@ -6896,7 +6775,7 @@ y usar el botón Importar para cargarlo <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - <html><head/><body><p>Instale RetroShare con un paquete instalador para obtener</p><p>/usr/share/applications/retroshare.desktop</p></body></html> + <html><head/><body><p>Instalar RetroShare con un paquete instalador para obtener </p><p>/usr/share/applications/retroshare.desktop</p></body></html> @@ -6918,33 +6797,25 @@ y usar el botón Importar para cargarlo seconds segundos - - You have enough right. - Tiene privilegios suficientes. - - - You don't have enough right. Run RetroShare as Admin to change this setting. - No tiene privilegios suficientes. Ejecute RetroShare como Administrador para cambiar esta configuración. - You have sufficient rights. - + Tiene suficientes privilegios. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + No tiene suficientes privilegios. Ejecute RetroShare como Admin para cambiar esta configuración. For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Por razones de seguridad el uso de inicio de sesión automático está desaconsejado, puede habilitarlo, ¡pero bajo su responsabilidad! Your RetroShare build has auto-login disabled. - + Su versión (build) de RetroShare tiene el inicio de sesión automático deshabilitado. @@ -6992,7 +6863,7 @@ y usar el botón Importar para cargarlo <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7020,28 +6891,12 @@ p, li { white-space: pre-wrap; } Add Friends Añadir 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;">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;">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> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7074,14 +6929,14 @@ 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: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"> @@ -7103,7 +6958,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:'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> @@ -7143,11 +6998,17 @@ 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: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 Friends' &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 invitaciones, pulse 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 amgios en la ventana y añádalos como amigos.</span></p></body></html> @@ -7400,72 +7261,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + El contenido del directorio es visible para nodos amigos (vea la lista a la derecha) Directory content is NOT visible to friend nodes - + El contenido del directorio NO es visible para nodos amigos Directory can be searched anonymously - + Se puede buscar en el directorio de forma anónima Directory cannot be searched anonymously - + No se puede buscar en el directorio de forma anónima Files can be accessed using anonymous tunnels - + Se puede acceder a los ficheros usando túneles anónimos Files can be accessed using anonymous & end-to-end encrypted tunnels - + Se puede acceder a los ficheros usando túneles anónimos cifrados extremo-a-extremo Files cannot be downloaded anonymously - + Los ficheros no se pueden descargar anónimamente All friend nodes can see this directory - + Todos los nodos amigos pueden ver este directorio Only visible to friend nodes in groups: %1 - + Sólo visible para nodos amigos en los grupos: %1 Not visible to friend nodes - + No visible para nodos amigos Files can be downloaded (but not searched) anonymously - + Los ficheros se pueden descargar (pero no buscar) de forma anónima Files can be downloaded and searched anonymously - + Los ficheros se pueden descargar y buscar de forma anónima Files can be searched (but not downloaded) anonymously - + Los ficheros se pueden buscar (pero no descargar) de forma anónima. No one can anonymously access/search these files. - + Nadie puede acceder/buscar estos ficheros de forma anónima. @@ -7526,7 +7387,7 @@ p, li { white-space: pre-wrap; } 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. - Puede permitir que sus amigos editen el hilo. Selecciónelos en la lista de debajo. Nota: No es posible revocar permisos de administrador de Publicados. + Puede permitir que sus amigos editen el hilo. Selecciónelos en la lista de debajo. Nota: No es posible revocar permisos de administrador de Posted. @@ -7554,12 +7415,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Ordenar en orden descendente Sort Ascending Order - + Ordenar en orden ascendente @@ -7579,16 +7440,12 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - - - - Sort by Posts - Ordenar por mensajes + Ordenar por número de mensajes Sort by Unread - + Ordenar por no leídos @@ -7604,12 +7461,12 @@ p, li { white-space: pre-wrap; } Last Post - Último mensaje + Última publicación Never - Nunca + Nunca @@ -7746,7 +7603,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Canales</h1> <p>Los canales le permiten publicar datos (ej. películas, música) que se diseminarán por la red</p> <p>Puede ver los canales a los que están suscritos sus amigos, y reenviar automáticamente los canales a los que esté suscrito a sus amigos. Esto promueve buenos canales en la red.</p> <p>Sólo el creador del canal puede publicar en ese canal. Otros vecinos en la red sólo pueden leer de él, a no ser que el canal sea privado. Sin embargo, puede compartir los derechos de publicación o lectura con nodos RetroShare amigos.</p> <p>Los canales pueden hacerse anónimos, o ligados a una identidad de RetroShare de forma que los lectores puedan contactar con usted si lo necesitan. Habilite "Permitir comentarios" si quiere permitir a los usuarios comentar en sus posts.</p> <p>Los posts de canal se conservan durante %1 días, y se sincronizan para los últimos %2 días, a menos que cambie esto.</p> @@ -7990,7 +7847,7 @@ p, li { white-space: pre-wrap; } Edit - Editar + Editar @@ -8072,7 +7929,7 @@ p, li { white-space: pre-wrap; } Comments - + Comentarios @@ -8101,7 +7958,7 @@ p, li { white-space: pre-wrap; } Add new post - + Añadir nuevo mensaje @@ -8151,7 +8008,7 @@ p, li { white-space: pre-wrap; } Never - Nunca + Nunca @@ -8206,7 +8063,7 @@ p, li { white-space: pre-wrap; } Last Post: - + Último post: @@ -8258,48 +8115,48 @@ p, li { white-space: pre-wrap; } Details - Detalles + Detalles Remove Item - + Eliminar elemento for identity - para la identidad + para la identidad You received a membership request for circle: - + Ha recibido una solicitud de membresía para el círculo: Grant membership request - + Conceder solicitud de membresía Revoke membership request - + Revocar solicitud de membresía You received an invitation for circle: - + Ha recibido una invitación para el círculo: Accept invitation - + Aceptar invitación Received event from unknown Circle: - + Se recibió un evento desde un círculo desconocido: @@ -8393,7 +8250,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + Copiar comentario @@ -8418,7 +8275,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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;">Comentario</span></p></body></html> @@ -8591,7 +8448,7 @@ before you can comment New Thread - Nuevo hilo + Nuevo hilo @@ -8686,7 +8543,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> - + <p>Suscribiendose al foro reunirá los posts disponibles de los amigos a los que esté suscrito, y hará el foro visible al resto de sus amigos.</p><p>Posteriormente puede desuscribirse desde el menú contextual de la lista del foro a la izquierda.</p> @@ -8881,22 +8738,22 @@ before you can comment New thread - + Nuevo hilo Read status - + Estado de lectura Edit - Editar + Editar Reply to author with private message - + Responder al autor con un mensaje privado @@ -8907,7 +8764,7 @@ before you can comment This will block/hide messages from this person, and notify friend nodes. - + Esto bloqueará/ocultará los mensajes de esta persona, y lo notificará a los nodos amigos. @@ -8917,12 +8774,12 @@ before you can comment Doing this, you trust your friends to decide to forward this message or not. - + Al hacer esto, confía en sus amigos para que decidan reenviar este mensaje o no. Give negative opinion - + Dar una opinión negativa @@ -8932,76 +8789,80 @@ before you can comment Author's reputation - + Reputación del autor Anonymous/unknown posts forwarded if reputation is positive - + Posts anónimos/desconocidos reenviados si la reputación es positiva Anonymous posts forwarded if reputation is positive - + Posts anónimos reenviados si la reputación es positiva Last post - + Último post Never - Nunca + Nunca Synchronization - + Sincronización Storage - + Almacenamiento Information for this identity is currently missing. - + La información para esta identidad actualmente está desaparecida. You have banned this ID. The message will not be displayed nor forwarded to your friends. - + Ha excluido esta identificación. El mensaje no será +mostrado ni reenviado a sus amigos. You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + No ha establecido una opinión para esta persona, +y sus amigos no la han votado positivamente: La +regulación de spam evita que este mensaje sea +reenviado a sus amigos. Message will be forwarded to your friends. - + El mensaje será reenviado a sus amigos. (Latest) - + (Más reciente) (Old) - + (Antiguo) You cant act on the author to a non-existant Message - + No puede actuar sobre el autor de un mensaje no-existente @@ -9062,7 +8923,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</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 reenviar los foros a los que esté suscrito a sus amigos. Esto automáticamente promueve foros interesantes en la red.</p> <p>Los mensajes del foro se conservan durante %1 días y sincronizan para los últimos dos días, a menos que lo configure de otro modo.</p> @@ -9130,22 +8991,22 @@ prevents the message to be forwarded to your friends. Key recipients can publish to restricted-type group and can view and publish for private-type channels - Los destinatarios de la llave pueden publicar en grupos de tipo restringido, pueden ver y publicar en canales de tipo privado + Los destinatarios de la clave pueden publicar en grupos de tipo restringido, y pueden ver y publicar en canales de tipo privado Share Publish Key - Compartir llave pública + Compartir clave de publicación 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 + marque los vecinos con los que desea compartir la clave privada de publicación Share Key With - Compartir llave con + Compartir clave con @@ -9158,10 +9019,6 @@ prevents the message to be forwarded to your friends. Message Distribution Distribución del mensaje - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - <html><head/><body><p>Los mensajes se diseminarán bastante más allá de sus nodos amigos, en tanto la gente se suscriba al canal/foro/publicados que está creando.</p></body></html> - @@ -9170,10 +9027,6 @@ prevents the message to be forwarded to your friends. Public Público - - Only For Your Friends - Sólo para sus amigos - Publish Signatures @@ -9207,7 +9060,7 @@ prevents the message to be forwarded to your friends. PGP Required - Requerido GPG + Se requiere PGP @@ -9303,7 +9156,7 @@ prevents the message to be forwarded to your friends. Never - Nunca + Nunca @@ -9369,7 +9222,7 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Los mensajes se difundirán mucho más allá de los nodos de sus amigos, mientras la gente se suscriba al canal/foro/posted que está creando.</p></body></html> @@ -9389,7 +9242,7 @@ prevents the message to be forwarded to your friends. Restricted node group - + Grupo de nodo restringido @@ -9487,54 +9340,54 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + Sincronizar posts de los últimos... 5 days - + 5 días 2 weeks - + 2 semanas 1 month - + 1 mes 3 months - + 3 meses 6 months - + 6 meses 1 year - + 1 año Indefinitly - + Indefinidamente Store posts for at most... - + Almacenar posts durante al menos... @@ -9654,107 +9507,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + Estadísticas del router GroupBox - GroupBox + GroupBox ID - + Identidad Destination - Destino + Destino Data status - Estado de los datos + Estado de datos Data size - + Tamaño de datos Data hash - Hash de los datos + Hash de datos Sending time (secs ago) - Hora de envío (segundos atrás) + Tiempo de envío (segundos transcurridos) Group ID - + Identificación del grupo Gxs Transport Groups: - + Grupos de transporte Gxs: Group ID / Author - + Identificación del grupo / Autor Number of messages / Publish TS - + Número de mensajes / Publicar estadísticas de transporte Local size of data - + Tamaño local de los datos Subscribed - Suscrito + Suscrito Popularity - Popularidad + Popularidad Details - Detalles + Detalles Unknown Peer - Vecino desconocido + Vecino desconocido Pending data items - + Elementos de datos pendientes Unknown - + Desconocido Yes - + No - No + No @@ -9999,21 +9852,37 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">multi-sistema, 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">usando un web-of-trust para autentificar vecinos y OpenSSL para cifrar toda la comunicación. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">RetroShare proporciona compartición de ficheros, 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"Enlaces externos útiles para mayor 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Wiki de RetroShare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Foro de RetroShare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Página del proyecto RetroShare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Blog del equipo de RetroShare</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Twitter de desarrollo de RetroShare</span></a></li></ul></body></html> @@ -10035,18 +9904,31 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +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: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; font-weight:600;">RetroShare Translations:</span></p> +<p 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; font-weight:600;">Traducciones de 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:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p 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; font-weight:600;">Traductores del sitio web de 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</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:8pt; font-weight:600;">Sueco: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Alemán: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polaco: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> @@ -10111,109 +9993,110 @@ p, li { white-space: pre-wrap; } Did you receive a certificate from a friend? - + ¿Ha recibido un certificado de un amigo? Add friends certificate - + Añadir certificado de amigos Add certificate file - + Añadir fichero de certificado Share your RetroShare Key - + Compartir su clave de RetroShare ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + El texto de debajo es su propio certificado de RetroShare. Envíeselo a sus amigos Open Source cross-platform, private and secure decentralized communication platform. - + Plataforma de comunicación descentralizada, +de código abierto, multi-sistema, privada y segura. Launch startup wizard - + Iniciar asistente de arranque Do you need help with RetroShare? - + ¿Necesita ayuda con RetroShare? Open Web Help - + Ayuda de Open Web Copy your Cert to Clipboard - Copiar su certificado al portapapeles + Copiar su certificado al portapapeles Save your Cert into a File - Guardar su certificado en un archivo + Guardar su certificado en un fichero Send via Email - + Enviar vía correo electrónico Invite via WebMail - + Invitar vía WebMail Recommend friends to each others - + Recomendar amigos a entre si <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;¡Bienvenido a RetroShare!</h1> <p>¡Necesita hacer <b>hacer amigos</b>! Después de que cree una red de amigos o se una a una red existente, podrá intercambiar ficheros, chatear, hablar en foros, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>Para hacerlo así, copie su certificado en esta página y envíelo a los amigos, y añada el certificado de sus amigos.</p> <p>Otra opción es buscar en Internet por "servidores de chat de RetroShare" (administrados independientemente). Estos servidores le permite intercambiar certificados con un nodo dedicado de RetroShare, a través del cual podrá encontrarse anónimamente con otras personas.</p> RetroShare Invite - Invitar a RetroShare + Invitación de RetroShare Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Su certificado se copia al Portapapeles, pegue y envíeselo a su amigo por correo electrónico o de algún otro modo Save as... - Guardar como... + Guardar como... RetroShare Certificate (*.rsc );;All Files (*) - Certificados GPG de RetroShare (*.rsc );;Todos los archivos (*) + Certificado de RetroShare (*.rsc );;Todos los ficheros (*) Home - Home + Página principal @@ -10232,17 +10115,22 @@ private and secure decentralized communication platform. Friends votes: - + Votos de 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: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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </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: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-family:'Sans'; font-size:9pt;">Su propia opinión acerca de una identidad rige la visibilidad de esa identidad para usted mismo y los nodos de sus amigos. Su propia opinión se comparte entre amigos y se usa para calcular una puntuación de reputación. Si su opinión acerca de una identidad es neutral, la puntuación de reputación es la media de las opiniones de sus amigos. Si no, su propia opinión otorga la puntuación.</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:9pt;">La puntuación global se usa en salas de chat, foros y canales para decidir sobre las acciones a tomar para cada identidad específica. Cuando la puntuación global es menor de -0.6, la identidad es excluida, lo que evita que todos los mensajes y foros/canales creados por esta identidad sean reenviados, en ambos sentidos. Algunos foros tienen también indicativos especiales anti-spam que requieren un mayor nivel de reputación, lo que les hace más sensibles a malas opiniones. Las identidades excluidas pierden gradualmente su actividad y desaparecen eventualmente (después de 30 días). </span></p></body></html> @@ -10277,12 +10165,12 @@ p, li { white-space: pre-wrap; } Ban-option: - + Opción de exclusión: Auto-Ban all identities signed by the same node - + Auto-excluir todas las identidades firmadas por el mismo nodo @@ -10293,23 +10181,23 @@ p, li { white-space: pre-wrap; } Send Invite - Enviar invitación + Enviar invitación Positive votes - + Votos positivos 0 - 0 + 0 Negative votes - + Votos negativos @@ -10351,7 +10239,7 @@ p, li { white-space: pre-wrap; } [unverified] - [no verificada] + [sin verificar] @@ -10411,52 +10299,52 @@ p, li { white-space: pre-wrap; } positive - + positivo negative - + negativo No votes from friends - + Sin votos de amigos Negative (Banned by you) - + Negativo (Excluido por usted) Positive (according to your friends) - + Positivo (de acuerdo con sus amigos) Negative (according to your friends) - + Negativo (de acuerdo con sus amigos) Hi,<br>I want to be friends with you on RetroShare.<br> - Hola,<br>quiero que seamos amigos en RetroShare.<br> + Hola,<br>quiero establecer amistad contigo en RetroShare.<br> You have a friend invite - + Tiene una invitación de amistad. Respond now: - + Responder ahora: Thanks, <br> - Gracias, <br> + Gracias, <br> @@ -10500,7 +10388,7 @@ p, li { white-space: pre-wrap; } Votes - + Votos @@ -10510,61 +10398,43 @@ p, li { white-space: pre-wrap; } Close - Cerrar + Cerrar Ban-option: - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">Su propia opinión acerca de una identidad rige la visibilidad de esa identidad para usted mismo y los nodos de sus amigos. Su propia opinión se comparte entre amigos y se usa para calcular una puntuación de reputación: Si su opinión acerca de una identidad es neutral, la puntuación de reputación es la media de las opiniones de sus amigos. Si no, su propia opinión proporciona la puntuación.</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 las salas de chat, foros y canales para decidir sobre las acciones a tomar para cada identidad específica. Cuando la puntuación global sea inferior a -0,6, la identidad se excluye, lo que evita que sean transmitidos todos los mensajes y foros/canales escritos por esta identidad, en ambos sentidos. Algunos foros también tienen indicativos anti-spam que requieren un nivel de reputación más alto, que los hace más sensibles a malas opiniones. Las identidades excluidas pierden gradualmente su actividad y eventualmente desaparecen (después de 30 días). </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> + Opción de exclusión: Auto-Ban all identities signed by the same node - + Auto-excluir todas las identidades firmadas por el mismo nodo Friend votes: - + Votos de amigos: Positive votes - + Votos positivos 0 - 0 + 0 Negative votes - + Votos negativos Usage statistics - + Estadísticas de uso @@ -10657,7 +10527,7 @@ p, li { white-space: pre-wrap; } Create new... - + Crear nueva... @@ -10684,13 +10554,21 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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;">Su propia opinión acerca de una identidad rige la visibilidad de esa identidad para si mismo y los nodos de sus amigos. Su propia opinión es compartida entre amgios y usada para calcular una puntuación de reputación: Si su opinión acerca de una identidad es neutral, la puntuación de reputación es la diferencia entre las opiniones positivas y negativas del amigo. Si no, su propia opinión proporciona la puntuación.</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, foros y canales para decidir sobre las acciones a tomar para cada identidad específica. Cuando la puntuación global es menor que -1, la identidad es excluida, lo que evita que sean reenviados todos los mensajes y foros/canales cuya autoría pertenezca a esta identidad, en ambos sentidos. Algunos foros también tienen indicativos anti-spam especiales que requieren un nivel de reputación no negativo, y eventualmente desaparecen (tras 5 días).</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Puede cambiar los umbrales y el tiempo de inactividad para eliminar identidades en Preferencias -&gt; Personas. </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> @@ -10752,7 +10630,7 @@ p, li { white-space: pre-wrap; } Show Items - + Mostrar elementos @@ -10844,10 +10722,6 @@ p, li { white-space: pre-wrap; } Not a member (do not have access to data limited to this circle) No es miembro (no tiene acceso a datos limitados a este círculo) - - Unknown ID : - Identificación desconocida: - Identity ID: @@ -10944,7 +10818,7 @@ p, li { white-space: pre-wrap; } -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. @@ -10983,7 +10857,7 @@ Estas identidades pronto dejarán de estar soportadas. Identity owned by you, linked to your Retroshare node but not yet validated - + Identidad de su propiedad, vinculada a su nodo RetroShare pero aún no validada @@ -10998,33 +10872,33 @@ Estas identidades pronto dejarán de estar soportadas. Message in chat room %1 - + Mensaje en la sala de chat %1 information - + información This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + El enlace a esta identidad se copió a su portapapeles. Péguela en un correo o un mensaje, para transmitir la identidad a alguien. Copy identity to clipboard - + Copiar identidad al portapapeles Send invite? - + ¿Enviar invitación? Do you really want send a invite with your Certificate? - + ¿Está seguro de que quiere enviar una invitación con su certificado? @@ -11034,152 +10908,152 @@ Estas identidades pronto dejarán de estar soportadas. <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identidades</h1> <p>En esta pestaña puede crear/editar <b>identidades pseudo-anónimas</b>, y <b>círculos</b>.</p> <p>Las <b>identidades</b> se usan para identificar sus datos de forma segura: firmar mensajes en salas de chat, foros y posts en canales, recibir comentarios usando el sistema de correo electrónico integrado de RetroShare, comentarios publicados tras los posts en los canales, chat usando túneles seguros, etc.</p> <p>Las identidades opcionalmente pueden estar <b>firmadas</b> por el certificado de su nodo RetroShare. Es más fácil confiar en las identidades firmadas pero son más fácilmente vinvulables con la dirección IP de su nodo.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> Unknown ID: - + Identidad desconocida: positive - + positivo negative - + negativo No votes from friends - + Sin votos de amigos Negative (Banned by you) - + Negativo (Excluido por usted) Positive (according to your friends) - + Positivo (de acuerdo con sus amigos) Negative (according to your friends) - + Negativo (de acuerdo con sus amigos) <b>[No record in current session]</b> - + <b>[Sin registro en la sesión actual]</b> Channels - Canales + Canales Forums - Foros + Foros Posted - + Posted Chat - Chat + Chat Unknown - + Desconocido [Unknown] - + [Desconocido] Admin signature in service %1 - + Firma del administrador en servicio %1 Admin signature verification in service %1 - + Verificación de firma del administrador en servicio %1 Creation of author signature in service %1 - + Creación de firma del autor en servicio %1 Message/vote/comment - + Mensaje/voto/comentario %1 in %2 tab - + %1 en la pestaña %2 Distant message signature validation. - + Validación de firma de mensaje distante. Distant message signature creation. - + Creación de firma de mensaje distante. Signature validation in distant tunnel system. - + Validación de firma en sistema de túnel distante. Signature in distant tunnel system. - + Firma en sistema de túnel distante. Update of identity data. - + Actualizar datos de identidad. Generic signature validation. - + Validación de firma genérica. Generic signature. - + Firma genérica. Generic encryption. - + Cifrado genérico. Generic decryption. - + Descifrado genérico. Membership verification in circle %1. - + Verificación de membresía en el círculo %1. @@ -11331,22 +11205,22 @@ Estas identidades pronto dejarán de estar soportadas. Key ID - ID de la llave + ID de la clave PGP Name - Nombre GPG + Nombre PGP PGP Hash - Hash GPG + Hash PGP PGP Id - id GPG + ID PGP @@ -11386,17 +11260,17 @@ Estas identidades pronto dejarán de estar soportadas. Error getting key! - ¡Error obteniendo la llave! + ¡Error al obtener la clave! Error KeyID invalid - Error, ID de la llave inválida + Error, ID de la clave no válida Unknown GpgId - ID GPG desconocida + ID PGP desconocida @@ -11479,7 +11353,7 @@ Estas identidades pronto dejarán de estar soportadas. KeyId - ID de la llave + ID de la clave @@ -11602,21 +11476,17 @@ Estas identidades pronto dejarán de estar soportadas. Recommend in a message to... - + Recomendar en un mensaje a... Share on channel... - + Compartir en un canal... Share on forum... - - - - Recommend in a message to - Recomendar en un mensaje a + Compartir en un foro... @@ -12414,17 +12284,17 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - Hola,<br>quiero que seamos amigos en RetroShare.<br> + Hola,<br>quiero establecer amistad contigo en RetroShare.<br> You have a friend invite - + Tiene una invitación de amistad. Respond now: - + Responder ahora: @@ -12590,10 +12460,6 @@ Do you want to save message ? Edit Tag Editar etiqueta - - Message - Mensaje - Distant messages: @@ -12607,7 +12473,7 @@ Do you want to save message ? Mail - + Correo @@ -12671,7 +12537,7 @@ Do you want to save message ? Send Invite - Enviar invitación + Enviar invitación @@ -12721,12 +12587,12 @@ Do you want to save message ? Send invite? - + ¿Enviar invitación? Do you really want send a invite with your Certificate? - + ¿Está seguro de que quiere enviar una invitación con su certificado? @@ -13186,7 +13052,7 @@ 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;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> + <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/a 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> @@ -13322,7 +13188,7 @@ Do you want to save message ? Mail - + Correo @@ -13376,7 +13242,7 @@ Do you want to save message ? Send Invite - Enviar invitación + Enviar invitación @@ -13412,12 +13278,12 @@ Do you want to save message ? from - de + de Reply to invite - + Responder a la invitación @@ -13447,12 +13313,12 @@ Do you want to save message ? Send invite? - + ¿Enviar invitación? Do you really want send a invite with your Certificate? - + ¿Está seguro de que quiere enviar una invitación con su certificado? @@ -13525,22 +13391,6 @@ Do you want to save message ? Name Nombre - - Did I authenticated peer - He autentificado al vecino - - - Did I sign his PGP key - Firmé su llave GPG - - - Cert Id - ID del certificado GPG - - - Last used - Últimos usados - Clear @@ -13584,12 +13434,12 @@ Do you want to save message ? Copy My Key to Clipboard - Copiar mi certificado GPG al portapapeles + Copiar mi certificado PGP al portapapeles Export My Key - Exportar mi llave GPG + Exportar mi clave @@ -13609,30 +13459,30 @@ Do you want to save message ? Remove unused keys... - Quitar las llaves sin usar... + Eliminar claves sin uso... Clean keyring - Vaciar el archivo de llaves + Vaciar el juego de claves - 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. - Las llaves seleccionadas a continuación no se han utilizado en los últimos 3 meses. + Las claves seleccionadas a continuación no se han utilizado en los últimos 3 meses. ¿Quiere eliminarlas de forma permanente? -Nota: Su viejo archivo de llaves será respaldado. +Nota: Se hará copia de seguridad de su viejo juego de claves. La eliminación puede fallar cuando se ejecutan varias instancias de Retroshare en la misma máquina. Keyring info - Información del archivo de llaves + Información del juego de claves @@ -13640,8 +13490,8 @@ La eliminación puede fallar cuando se ejecutan varias instancias de Retroshare For security, your keyring was previously backed-up to file - %1 llaves se han eliminado de su archivo de llaves. -Para mayor seguridad, su anillo de llaves fue previamente respaldado a una copia de seguridad. + Se han eliminado %1 claves de su juego de claves. +Para mayor seguridad, previamente se hizo copia de seguridad en fichero de su juego de claves. @@ -13653,67 +13503,17 @@ Para mayor seguridad, su anillo de llaves fue previamente respaldado a una copia Cannot delete secret keys - No se pueden eliminar las llaves secretas + Las claves secretas (privadas) no se pueden eliminar Cannot create backup file. Check for permissions in pgp directory, disk space, etc. No se puede crear el archivo de respaldo. Compruebe los permisos en el directorio pgp, espacio en disco, etc. - - Personal signature - Firma personal - - - PGP key signed by you - La llave GPG firmada por usted - - - Marginally trusted peer - Vecino de confianza marginal - - - Fully trusted peer - Vecino de plena confiaza - - - Untrusted peer - Vecino sin confianza - - - Last hour - Última hora - - - Today - Hoy - - - Never - Nunca - - - %1 days ago - Hace %1 días - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - me ha autentificado. Pulse con el -botón derecho y seleccione hacer amigo para conectar. - - - yourself - 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. - - - Did that peer sign your own profile PGP key - Ha firmado ese vecino la propia clave PGP de usted + Inconsistencia de datos en el juego de claves. Probablemente esto es un error. Póngase en contacto con los desarrolladores. @@ -13725,10 +13525,6 @@ botón derecho y seleccione hacer amigo para conectar. Trusted keys only Sólo claves de confianza - - Trust level - Nivel de confianza - Search name @@ -13742,7 +13538,7 @@ botón derecho y seleccione hacer amigo para conectar. Profile details... - + Detalles del perfil... @@ -13818,7 +13614,7 @@ Se informo del error: Log entries - + Entradas de registro (log) @@ -13848,12 +13644,12 @@ Se informo del error: <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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;Suscripción de noticias</h1> <p>La suscripción de registro (log feed) muestra los últimos eventos en su red, ordenados por la hora a la que los recibió. Esto le proporciona un compendio de la actividad de sus amigos. Puede configurar qué eventos mostrar pulsando en <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 acceder a usted)</li> <li>Posts de canal y foro</li> <li>Nuevos canales y foros a los que puede suscribirse</li> <li>Mensajes privados de sus amigos</li> </ul> </p> Log - + Registro (log) @@ -13892,7 +13688,7 @@ Se informo del error: Chat Room - + Sala de chat @@ -13929,22 +13725,22 @@ Se informo del error: Friend Connected - Amigo conectado + Amigo conectado Circles - Círculos + Círculos Links - + Enlaces Mails - + Correos @@ -13979,27 +13775,27 @@ Se informo del error: Chat Rooms - + Salas de chat Count occurrences of my current identity - + Contar apariciones de mi identidad actual Count occurrences of any of the following texts (separate by newlines): - + Contar apariciones de cualquiera de los siguientes textos (separar en líneas): Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Márquelo, si las apariciones de la identidad y el texto anterior deben coincidir en mayúsculas y minúsculas para incrementar el recuento. Case sensitive - + Distingue mayúsculas y minúsculas @@ -14091,31 +13887,23 @@ Se informo del error: Count all unread messages Contar todos los mensajes no leídos - - Count occurences of any of the following texts (separate by newlines): - Contar las apariciones de cualquiera de los siguientes textos (separados por nuevas líneas): - - - Count occurences of my current identity - Contar las apariciones de mi identidad actual - NotifyQt Passphrase required - + Se requiere frase-contraseña You need to sign your node's certificate. - + Tiene que firmar el certificado de su nodo. You need to sign your forum/chatrooms identity. - + Tiene que firmar su identidad de foros/salas de chat. @@ -14125,7 +13913,7 @@ Se informo del error: Please enter your Retroshare passphrase - + Por favor, introduzca su frase-contraseña de RetroShare @@ -14216,7 +14004,7 @@ Se informo del error: - 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 @@ -14228,13 +14016,13 @@ Sin Anonimato D/S: desactiva el reenvío de archivos <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + <p>Advertencia: Este modo de operación deshabilita el servicio de túnel. Esto significa que puede usar un chat distante de forma no anónima, y que la descarga de ficheros y el servicio de correo serán más lentos.</p><p>¡Este estado se guardará tras reiniciar, así que no olvide que lo cambió!</p> Turtle routing disabled! - + ¡Se deshabilitó el enrutamiento tortuga! @@ -14247,12 +14035,12 @@ Sin Anonimato D/S: desactiva el reenvío de archivos Profile info - + Información del perfil Name : - Nombre : + Nombre : @@ -14307,7 +14095,7 @@ Sin Anonimato D/S: desactiva el reenvío de archivos This profile has signed your own profile key - + Este perfil ha firmado su propia clave del perfil @@ -14324,7 +14112,7 @@ Sin Anonimato D/S: desactiva el reenvío de archivos <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 align="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"> @@ -14335,17 +14123,17 @@ p, li { white-space: pre-wrap; } Sign this key - + Firmar esta clave PGP key - + Clave PGP These options apply to all nodes of the profile: - + Estas opciones se aplican a todos los nodos del perfil: @@ -14355,7 +14143,7 @@ p, li { white-space: pre-wrap; } Sign PGP key - Firmar clave GPG + Firmar clave PGP @@ -14380,7 +14168,7 @@ p, li { white-space: pre-wrap; } Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + Debajo tiene la clave del perfil del nodo en formato ASCII PGP. Identifica todos los nodos del mismo perfil. Un "certificado de RetroShare" que puede intercambiar para hacer amigos, está en los "detalles" de cada nodo individual. @@ -14468,13 +14256,15 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Advertencia: En su opción de Transferencia-de-fichero, establezca permitir descarga directa a Sí. Warning: In your File-Transfer option, you select allow direct download to No. - + +Advertencia: En su opción de Transferencia-de-fichero, establezca permitir descarga directa a No. @@ -14539,7 +14329,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Retroshare profile - + Perfil de RetroShare @@ -14626,7 +14416,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Desfase temporal: @@ -14656,7 +14446,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + Desfase temporal del amigo @@ -14771,63 +14561,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. Reputation - Reputación + Reputación <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + <html><head/><body><p>Cualquiera en su lista de contactos automáticamente tendrá una opinión positiva si no está establecida. Esto permite erigir automáticamente las reputaciones de los nodos usados. </p></body></html> automatically give "Positive" opinion to my contacts - + dar automáticamente una opinión "Positiva" a mis contactos Difference in votes (+/-) to rate an ID negatively: - + Diferencia en votos (+/-) para valorar una identificación de forma negativa: <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Cuando una identidad recibe más votos negativos que positivos, cambia de &quot;Neutral&quot; a &quot;Negativa (según sus amigos)&quot;. Por defecto, es suficiente una diferencia de un voto, pero puede poner más difícil que ocurra esto seleccionando aquí un número más alto.</p></body></html> <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Cuando una identidad recibe más votos positivos que negativos, cambia de &quot;Neutral&quot; a &quot;Positiva (según sus amigos)&quot;. Por defecto, es suficiente con una diferencia de un voto, pero puede poner más difícil que ocurra esto seleccionando aquí un número más alto.</p></body></html> Difference in votes (+/-) to rate an ID positively: - + Diferencia en votos (+/-) para valorar una identificación de forma positiva: Delete banned identities after (0 means indefinitely): - + Eliminar identidades excluidas tras (0 significa indefinidamente): Reset reputation of banned identities after (0 means never): - + Reinicializar reputación de identidades excluidas tras (0 significa nunca): <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + <html><head/><body><p>Las identidades excluidas no están etiquetadas y por tanto pierden actividad. Son eliminadas automáticamente tras un periodo finito de tiempo.</p></body></html> days - + días <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + <html><head/><body><p>Para evitar que las identificaciones borradas reaparezcan porque sean usadas, por ejemplo, en foros o canales, se conservan en una lista durante algún tiempo. Tras aquello, se &quot;eliminan&quot; de la lista de exclusión, y se descargarán de nuevo como no excluidas si se usan en foros, salas de chat, etc.</p></body></html> @@ -14918,7 +14708,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14931,7 +14721,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14944,7 +14734,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15092,7 +14882,7 @@ solicitar editarlo! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15166,44 +14956,28 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Error: La instancia '%1' no puede crear un widget Error: failed to remove file %1 (uninstalling plugin '%2') - + Error: No se pudo eliminar el fichero %1 (desinstalando el plugin '%2') Error (uninstall): no plugin with name '%1' found - + Error (desinstalación): No se encontró ningún plugin con el nombre '%1' Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Error: La instancia '%1' no puede crear un widget + Error (instalación): El fichero de plugin %1 no existe Error: no plugin with name '%1' found Error: No se encontró ningún complemento con el nombre '%1' - - Error(uninstall): no plugin with name '%1' found - Error (desinstalación): No se encontró ningún complemento con el nombre '%1' - - - Error(installation): plugin file %1 doesn't exist - Error (instalación): El archivo del complemento %1 no existe - - - Error: failed to remove file %1(uninstalling plugin '%2') - Error: Fallo al eliminar archivo %1(desinstalando complemento '%2') - Error: can't copy %1 to %2 @@ -15387,52 +15161,36 @@ 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. - Remote status unknown. - + Estado remoto desconocido. Can't send message immediately, because there is no tunnel available. - + No se puede enviar el mensaje inmediatamente, porque no hay túnel disponible. The person you are talking to has deleted the secured chat tunnel. - + La persona con la está hablando ha eliminado el túnel de chat seguro. The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + El interlocutor del chat eliminó el túnel seguro, los mensajes se entregarán tan pronto como sea posible. 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. + Cerrando esta ventana finalizará la conversación, notifíqueselo al vecino y retire el túnel cifrado. Kill the tunnel? ¿Matar el túnel? - - Can't send message, because there is no tunnel. - No se pudo enviar el mensaje, porque no hay túnel. - - - Can't send message, because the chat partner deleted the secure tunnel. - No se pudo enviar el mensaje, porque el interlocutor del chat borró el túnel seguro. - PostedCreatePostDialog @@ -15497,12 +15255,12 @@ de un posible comportamiento malicioso de los plugins. Posted Links - Enlaces publicados + Enlaces de 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>El servicio posted 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. Es un sistema de promoción que también da la oportunidad de ilustrar enlaces importantes.</p> <p>No hay restricciones en cuanto a qué enlaces se comparten. Tenga cuidado cuando pulse sobre ellos.</p> <p>Los enlaces de posted se conservan durante %1 días, y se sincronizan más allá de los últimos %2 días, a menos que usted cambie esto.</p> @@ -15532,7 +15290,7 @@ de un posible comportamiento malicioso de los plugins. Links - + Enlaces @@ -15540,7 +15298,7 @@ de un posible comportamiento malicioso de los plugins. Posted Topic - Tema publicado + Tema de Posted @@ -15578,7 +15336,7 @@ de un posible comportamiento malicioso de los plugins. Subscribe to Posted - Suscribirse a Publicados + Suscribirse a Posted @@ -15594,7 +15352,7 @@ de un posible comportamiento malicioso de los plugins. Posted Description - Descripción de Publicados + Descripción de Posted @@ -15604,7 +15362,7 @@ de un posible comportamiento malicioso de los plugins. New Posted - Nuevo Publicado + Nuevo Posted @@ -15778,10 +15536,6 @@ de un posible comportamiento malicioso de los plugins. Tabs Pestañas - - Posted - Publicados - Open each topic in a new tab @@ -15790,7 +15544,7 @@ de un posible comportamiento malicioso de los plugins. Links - + Enlaces @@ -15798,7 +15552,7 @@ de un posible comportamiento malicioso de los plugins. Posted - Publicado + Posted @@ -15852,13 +15606,21 @@ de un posible comportamiento malicioso de los plugins. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 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"> +<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 ser 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 una nueva ubicación en un equipo distinto, seleccione el administrador de identidades en la ventana de inicio de sesión. Desde allí puede importar el fichero de clave y crear una nueva ubicación 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> @@ -15950,26 +15712,6 @@ y utilizar el botón Importar para cargarla Certificates (*.pqi *.pem) Certificados (*.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;"> -<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"> -<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="-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 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> - Full keys available in your keyring: @@ -16078,7 +15820,7 @@ p, li { white-space: pre-wrap; } Sorry, create certificate failed - Lo siento, la creación del certificado GPG ha fallado + Lo sentimos, la creación del certificado PGP ha fallado @@ -16186,26 +15928,10 @@ p, li { white-space: pre-wrap; } Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - Pulse aquí para añadir este certificado de RetroShare a su archivo de llaves GPG - y abra el Asistente para añadir amigos. + Pulse para añadir este certificado de RetroShare a su juego de claves PGP +y abra el Asistente para añadir amigos. - - Add file - Añadir archivo - - - Add files - añadir archivos - - - Do you want to process the link ? - ¿Desea procesar el enlace? - - - Do you want to process %1 links ? - ¿Desea procesar %1 enlaces? - Warning: Retroshare is about to ask your system to open this file. @@ -16219,22 +15945,22 @@ and open the Make Friend Wizard. Identity added to People - + Identidad añadida a Personas The identity was added to people. You can now chat with it, send messages to it, etc. - + La identidad fue añadida a Personas. Ahora puede chatear con su interlocutor, enviarle mensajes, etc. Identity cannot be added to People - + La identidad no se puede añadrir a Personas The identity was not added to people. Some error occured. The link is probably corrupted. - + La identidad no se añadió a Personas. Ocurrió algún error. Probablemente el enlace está mal. @@ -16349,17 +16075,17 @@ and open the Make Friend Wizard. Posted not found - No se encontraron publicados + No se encontró Posted Posted message not found - No se encontró el mensaje publicado + No se encontró el mensaje de Posted Posted messages not found - No se encontraron los mensajes publicados + No se encontraron mensajes de Posted @@ -16369,22 +16095,22 @@ and open the Make Friend Wizard. Click to browse/download this file collection - + Pulse para explorar/descargar esta colección de ficheros %1 (%2) - + %1 (%2) Identity link (name=%1, ID=%2) - + Enlace de la identidad (nombre=%1, identificación=%2) %1 (%2 files, %3) - + %1 (%2 ficheros, %3) @@ -16404,7 +16130,7 @@ and open the Make Friend Wizard. Chat room not found - + Sala de chat no encontrada @@ -16465,12 +16191,12 @@ 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. - 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. + Esta versión de RetroShare está usando OpenPGP SDK. Como efecto secundario, no está utilizando el juego de claves PGP compartido por el sistema, pero tiene su propio juego de claves compartido por todas las instancias de RetroShare. <br><br>No parece que tenga tal juego de claves, aunque las claves PGP son mencionadas por cuentas existentes de RetroShare, probablemente debido a que acaba de cambiar a esta nueva versión del programa. 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> - Podrá elegir entre:<br><ul><li><b>Aceptar</b> para copiar el archivo de llaves existente de GnuPG (más seguro), o </li><li><b>Cerrar sin guardar</b> para empezar de nuevo con un llavero vacío (se le pedirá que cree una clave PGP nueva para trabajar con RetroShare, o importar un par de llaves PGP guardadas previamente). </li><li><b>Cancelar</b> para salir y forjar un llavero por usted mismo (necesita alguna experiencia con PGP)</li></ul> + Podrá elegir entre:<br><ul><li><b>Aceptar</b> para copiar el juego de claves existente desde GnuPG (más seguro), o </li><li><b>Cerrar sin guardar</b> para empezar de nuevo con un juego de claves vacío (se le pedirá que cree una clave PGP nueva para trabajar con RetroShare, o que importe un par de claves PGP guardadas previamente). </li><li><b>Cancelar</b> para salir y crear un juego de claves por si mismo (necesita alguna experiencia con PGP)</li></ul> @@ -16481,7 +16207,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Initialization failed. Wrong or missing installation of PGP. - La inicialización ha fallado. Instalación de GPG dañada o ausente. + La inicialización ha fallado. Instalación de PGP dañada o ausente. @@ -16496,36 +16222,40 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + ¡No se puede iniciar el Administrador de Tor! Tor cannot be started on your system: - + Tor no se puede iniciar en su sistema: + + Cannot start Tor - + No se puede iniciar Tor Sorry but Tor cannot be started on your system! The error reported is:" - + ¡Lo sentimos pero Tor no se puede iniciar en su sistema! + +El error obtenido es:" Cannot start a hidden tor service! - + ¡No se puede iniciar un servicio oculto de Tor! It was not possible to start a hidden service. - + No fue posible iniciar un servicio oculto. @@ -16559,20 +16289,12 @@ archivo bloqueado: Tunnel is pending... Messages will be delivered as soon as possible - + El túnel está pendiente... Los mensajes se entregarán tan pronto como sea posible Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - El túnel está pendiente... - - - Secured tunnel is working. You can talk! - El túnel seguro está funcionando. ¡Puede hablar! + El túnel asegurado está funcionando. ¡Los mensajes se entregarán inmediatamente! @@ -16742,7 +16464,7 @@ Seguridad: No hay identificaciones anónimas Join chat room - + Unirse a la sala de chat @@ -16768,122 +16490,122 @@ Seguridad: No hay identificaciones anónimas Indefinitely - + Indefinidamente 5 days - + 5 días 2 weeks - + 2 semanas 1 month - + 1 mes 2 month - + 2 meses 6 month - + 6 meses 1 year - + 1 año days - + días Processing - + Procesando Choosing group - + Escoger grupo Creating receipt - + Creando recibo Signing receipt - + Firmando recibo Serializing - + Serializando Creating payload - + Creando carga útil Encrypting payload - + Encriptando carga útil Publishing - + Publicando Waiting for receipt - + Esperando recibo Receipt received - + Recibo recibido Receipt signature failed - + Firma del recibo fallida Encryption failed - + Cifrado fallido Unknown - + Desconocido Click to pause the hashing process - + Haz clic para pausar el proceso de hashing [Hashing is paused] - + [El proceso de hashing está pausado] Click to resume the hashing process - + Haz clic para continuar con el proceso de hashing @@ -16898,12 +16620,12 @@ Seguridad: No hay identificaciones anónimas <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -17026,10 +16748,10 @@ 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: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"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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;">Esta es una lista de carpetas compartidas. Puede añadir o quitar carpetas utilizando los botones de abajo. Cuando se añade una nueva carpeta, inicialmente todos los archivos de esa carpeta se comparten.</span></p><p 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;">Puede configurar el tipo de compartición de cada carpeta por separado:</span><span style=" font-size:8pt;"> </span></p> @@ -17091,9 +16813,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17108,8 +16830,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -17293,17 +17015,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Opciones de vista de árbol Show column... - + Mostrar columna... [no title] - + [sin título] @@ -17324,83 +17046,12 @@ p, li { white-space: pre-wrap; } <strong>Bajada:</strong> 0.00 (kB/s) | <strong>Subida:</strong> 0.00 (kB/s) - - RelayPage - - Enable Relay Connections - Habilitar conexiones de repetidor - - - Use Relay Servers - Utilizar servidores de repetidor - - - Relay options - Opciones del repetidor - - - Number - Número - - - Bandwidth per link - Ancho de banda por enlace - - - Total Bandwidth - Ancho de banda total - - - Friends - Amigos - - - kB/s - kB/s - - - Friends of Friends - Amigos de mis amigos - - - General - General - - - Total: - Total: - - - Relay Server Setup - Configuración del servidor del repetidor - - - Add Server - Añadir servidor - - - Server DHT Key - Llave del servidor DHT - - - Remove Server - Quitar servidor - - - Relay - Repetidor - - - <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 vecinos 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> - - RemoteSharedFilesDialog Download... - + Descargar... @@ -17410,11 +17061,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Recomendar en un mensaje a + Recomendar en un mensaje a... @@ -17427,12 +17074,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + [Todos los nodos de amigos] Only - + Sólo @@ -17442,7 +17089,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + Este nodo aún no ha enviado información de directorio alguna. @@ -17512,32 +17159,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Guardar archivo de colección. + Guardar archivo de colección. File already exists. - El archivo ya existe. + El archivo ya existe. What do you want to do? - ¿Qué quiere que haga? + ¿Qué quiere que haga? Overwrite - Sobreescribir + Sobreescribir Merge - Combinar + Combinar Cancel - Cancelar + Cancelar @@ -17560,12 +17207,12 @@ p, li { white-space: pre-wrap; } Destination: - + Destino: Right click to change download directory - + Clic derecho para cambiar el directorio de descarga @@ -17601,7 +17248,7 @@ p, li { white-space: pre-wrap; } 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. Algunos nombres de archivos o directorios contenían caracteres prohibidos. Caracteres ",|,/,\,<,>,*,? se reemplazarán por '_'. Los archivos en cuestión aparecen en rojo. @@ -17626,23 +17273,15 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>Añada el elemento seleccionado a la colección.</p><p>Si un directorio es seleccionado, todos sus descendientes serán añadidos.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Mayús + Intro&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>Crear un nuevo directorio en la colección.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - + - Remove Duplicate - + Eliminar duplicado @@ -17664,10 +17303,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace File Count Recuento de archivos - - This is the root directory. - Este es el directorio raíz. - Real Size: Waiting child... @@ -17686,17 +17321,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Download files - + Descargar archivos Specify... - Especificar... + Especificar... Choose directory - Elegir directorio + Elegir directorio @@ -17738,12 +17373,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Do you want to remove them and all their children, too? - + ¿Quiere eliminarlos y a todos sus descendientes directos también? Do you want to remove this file from the list? - + ¿Quiere eliminar este fichero de la lista? @@ -17813,30 +17448,6 @@ If you believe it is correct, remove the corresponding line from the file and re ⏎ Si crees que es correcto, elimina la correspondiente línea del archivo y reábrelo con el RetroShare. - - Save Collection File. - Guardar archivo de colección. - - - What do you want to do? - ¿Qué quiere que haga? - - - Overwrite - Sobreescribir - - - Merge - Combinar - - - Cancel - Cancelar - - - File already exists. - El archivo ya existe. - RsDownloadListModel @@ -17844,128 +17455,119 @@ Si crees que es correcto, elimina la correspondiente línea del archivo y reábr Name i.e: file name - Nombre + Nombre Size i.e: file size - Tamaño + Tamaño Completed - Completado + Completado Speed i.e: Download speed - Velocidad + Velocidad Progress / Availability i.e: % downloaded - Progreso / Disponibilidad + Progreso / Disponibilidad Sources i.e: Sources - Fuentes + Fuentes Status - Estado + Estado Speed / Queue position - Velocidad / Posición en la cola + Velocidad / Posición en la cola Remaining - Pendiente + Pendiente Download time i.e: Estimated Time of Arrival / Time left - Tiempo estimado para completar + Tiempo estimado para completar Hash - Hash + Hash Last Time Seen i.e: Last Time Receiced Data - Última vez vista + Última vez vista Path i.e: Where file is saved - Ruta + Ruta Failed - Fallido + Fallido Okay - Bien + Bien Waiting - Esperando + Esperando Downloading - Descargando + Descargando Complete - Completo + Completo Queued - Esperando + Esperando Paused - Pausado + Pausado Checking... - Comprobando... + Comprobando... Unknown - - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - La imagen es demasiado grande para su transmisión. - ¿Reducir la imagen a %1x%2 píxeles? + Desconocido @@ -17992,7 +17594,7 @@ Reducing image to %1x%2 pixels? filename - + nombre del archivo @@ -18002,7 +17604,7 @@ Reducing image to %1x%2 pixels? level - + nivel @@ -18012,7 +17614,7 @@ Reducing image to %1x%2 pixels? style - + estilo @@ -18022,7 +17624,7 @@ Reducing image to %1x%2 pixels? stylesheet - + Hoja de estilo @@ -18032,17 +17634,13 @@ Reducing image to %1x%2 pixels? language - + Idioma Sets RetroShare's language. Determinar el idioma de retroShare. - - RetroShare Usage Information - Información sobre el uso de RetroShare - Unable to open log file '%1': %2 @@ -18052,7 +17650,7 @@ Reducing image to %1x%2 pixels? Invalid operating mode specified: - + Modo de operación elegido inválido: @@ -18072,32 +17670,32 @@ Reducing image to %1x%2 pixels? opmode - + modoop Sets RetroShare's operating mode. - + Determinar el modo de operación de RetroShare RsLinkURL - + RsLinkURL Open RsLink with protocol retroshare:// - + Abrir RsLink con el protocolo retroshare:// Open RsFile with or without arg. - + Abrir RsFile con o sin arg. RetroShare GUI Usage Information - + Información sobre el uso de la GUI @@ -18489,7 +18087,7 @@ en la red (siempre informar de archivos disponibles) <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>Esta es la IP a la que su amigo afirma estar conectado. Si acaba de cambiar las IPs, esta es una advertencia en falso. Si no, eso significa que su conexión con este amigo está siendo repetida por un par (peer) intermedio, que sería sospechoso.</p> + <p>Esta es la IP a la que su amigo afirma estar conectado. Si acaba de cambiar las IPs, esta es una advertencia en falso. Si no, eso significa que su conexión con este amigo está siendo repetida por un vecino intermedio, que sería sospechoso.</p> @@ -18589,7 +18187,7 @@ en la red (siempre informar de archivos disponibles) Connection refused by remote peer - Conexión rechazada por par remoto + Conexión rechazada por vecino remoto @@ -18628,7 +18226,7 @@ en la red (siempre informar de archivos disponibles) Certificate has wrong signature!! This peer is not who he claims to be. - ¡¡El certificado tiene una firma errónea!! El par ('peer') no es quien dice ser. + ¡¡El certificado tiene una firma errónea!! El vecino no es quien dice ser. @@ -18643,7 +18241,7 @@ en la red (siempre informar de archivos disponibles) Peer/node not in friendlist (PGP id= - El par/nodo no está en la lista de amigos (identificación PGP= + El vecino/nodo no está en la lista de amigos (identificación PGP= @@ -18663,10 +18261,6 @@ en la red (siempre informar de archivos disponibles) Network Mode Modo de red - - Nat - NAT - Automatic (UPnP) @@ -18711,7 +18305,7 @@ en la red (siempre informar de archivos disponibles) NAT - + NAT @@ -18749,15 +18343,11 @@ en la red (siempre informar de archivos disponibles) Known / Previous IPs: IPs conocidas / anteriores: - - Show Discovery information in statusbar - Mostrar información de descubrimiento en la barra de estado - 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 desmarca esto, RetroShare sólo puede determinar su IP cuando se conecta a alguien. Si deja esto marcado le ayudará @@ -18802,7 +18392,7 @@ behind a firewall or a VPN. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Tor ha sido configurado automáticamente por Retroshare. No deberías necesitar cambiar nada aquí. @@ -18853,12 +18443,12 @@ behind a firewall or a VPN. BOB is running and accessible - + BOB está funcionando y accesible BOB is not accessible! Is it running? - + BOB no es accesible! Está funcionando? @@ -18867,111 +18457,117 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + Retroshare utiliza BOB para crear un %1 túnel en %2:%3 (llamado %4) + +Al cambiar opciones (p.e. el puerto) utiliza los botones de abajo para reiniciar BOB. + + client - + cliente server - + servidor unknown - desconocido + desconocido BOB is processing a request - + BOB está procesando una petición connectivity check - + comprobación de conectividad generating key - + creando clave starting up - + iniciando shuting down - + apagando BOB is processing a request: %1 - + BOB está procesando una petición: %1 BOB is broken - + BOB está roto + BOB encountered an error: - + BOB ha encontrado un error: + BOB tunnel is running - + El túnel de BOB está funcionando BOB is working fine: tunnel established - + BOB está funcionando bien: túnel establecido BOB tunnel is not running - + El túnel de BOB no está funcionando BOB is inactive: tunnel closed - + BOB está inactivo: túnel cerrado request a new server key - + solicita una nueva clave de servidor load server key from base64 - + carga la clave de servidor desde base64 stop BOB tunnel first to generate a new key - + para generar una nueva clave, primero detén el túnel BOB stop BOB tunnel first to load a key - + para cargar una clave, primero detén el túnel BOB stop BOB tunnel first to disable BOB - + detén el túnel BOB para desactivar BOB @@ -19026,133 +18622,140 @@ Also check your ports! WARNING: These values don't take into account the Relays. - + ATENCIÓN: +Estos valores no tienen en cuenta los Relays. 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] -> Next -> 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] -> Next -> 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 por defecto: 127.0.0.1:9050. Establécelo en la configuración torrc y actualízalo aquí. + +i2P - Socks Proxy: visita http://127.0.0.1:7657/i2ptunnelmgr para crear un túnel cliente: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> introducir un nombre -> dejar 'Outproxies' vacío -> introducir puerto (memorizar!) [puede que quieras establecer la accesibilidad a 127.0.0.1] -> Next -> activa 'Auto Start' -> finish! +Ahora, añade la dirección (p.e. 127.0.0.1) y el puerto que has elegido para el Proxy I2P. + +Puedes conectar con nodos ocultos incluso si estás utilizando un nodo estándar. ¿Por qué no utilizar Tor y/o I2P? Automatic I2P/BOB - + I2P/BOB automático Enable I2P BOB - changing this requires a restart to fully take effect - + Activar I2P BOB - este cambio requiere reiniciar para que tenga el efecto esperado enableds advanced settings - + activa la configuración avanzada advanced mode - + modo avanzado I2P Basic Open Bridge - + I2P Basic Open Bridge I2P Instance address - + Dirección de instancia de I2P 127.0.0.1 - 127.0.0.1 + 127.0.0.1 I2P proxy port - + Puerto del proxy I2P BOB accessible - + BOB accesible Address - + Dirección .b32.i2p - + .b32.i2p generate new - + generar nuevo Tunnel length (in/out) - + Longitud del túnel (in/out) Tunnel quantity (in/out) - + Cantidad del túnel (in/out) Tunnel variance (in/out) - + Varianza del túnel (in/out) <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + <html><head/><body><p>Clave de servidor - cuando se ha establecido una clave, será utilizada para crear un <br/> servicio oculto para I2P. De otra manera se crea un túnel cliente. </p></body></html> load key - + cargar clave Start - Iniciar + Iniciar Restart - + Reiniciar Stop - Detener + Detener BOB status - + Estado de BOB Incoming - Entrante + Entrante <html><head/><body><p>Setup your hidden address (and port if needed)</p></body></html> - + <html><head/><body><p>Establece tu dirección oculta (y puerto si es necesario)</p></body></html> @@ -19172,101 +18775,113 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Para recibir conexiones, primero debes configurar un servicio oculto Tor/I2P. + +Para Tor: accede a torrc y a la documentación para obtener detalles sobre cómo hacerlo. + +Para I2P: accede a http://127.0.0.1:7657/i2ptunnelmgr para configurar un túnel de servidor: Tunnel Wizard -> Server Tunnel -> Standard -> introducir un nombre -> escribe la dirección y el puerto que RS está utilizando (mira la dirección local más arriba) -> selecciona 'Auto Start' -> finish! + +Una vez hecho, pega la dirección Onion/I2P (Base 32) en la caja de encima. +Ésta es tu dirección externa en la red Tor/I2P. +Para terminar, asegúrate de que los puertos coinciden con la configuración. + +Si tienes problemas conectando a través de Tor, comprueba sus logs. Relay - Repetidor + Repetidor Enable Relay Connections - Habilitar conexiones de repetidor + Habilitar conexiones de repetidor Use Relay Servers - Utilizar servidores de repetidor + Utilizar servidores de repetidor Relay options - Opciones del repetidor + Opciones del repetidor Number - Número + Número Bandwidth per link - Ancho de banda por enlace + Ancho de banda por enlace Total Bandwidth - Ancho de banda total + Ancho de banda total Friends - Amigos + Amigos Friends of Friends - + Amigos de amigos General - General + General Total: - Total: + Total: Warning: This bandwidth adds up to the max bandwidth. - + Atención: este ancho de banda supera el máximo ancho de banda. Relay Server Setup - Configuración del servidor del repetidor + Configuración del servidor del repetidor Add Server - Añadir servidor + Añadir servidor Server DHT Key - Llave del servidor DHT + Llave del servidor DHT Remove Server - Quitar servidor + Quitar servidor - <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>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> - + <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 vecinos 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> @@ -19281,7 +18896,7 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + Activar el filtrado de IPs @@ -19361,10 +18976,6 @@ If you have issues connecting over Tor check the Tor logs too. 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> @@ -19396,26 +19007,6 @@ If you have issues connecting over Tor check the Tor logs too. 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 - @@ -19452,28 +19043,6 @@ Puede conectarse a Nodos Ocultos, incluso si está ejecutando un Nodo Estándar, 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 @@ -19505,12 +19074,12 @@ Si tiene problemas conectando sobre Tor, compruebe también los registros (logs) <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 vecinos 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>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 vecinos conectados, para ayudarles a elegir nuevos amigos. Sin embargo, el establecimiento de amistad nunca es automático, y ambos vecinos todavía necesitan confiar el uno en el otro para permitir la conexión. </p></body></html> @@ -19520,11 +19089,7 @@ Si tiene problemas conectando sobre Tor, compruebe también los registros (logs) <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>Esta lista se rellena automáticamente con información reunida en múltiples fuentes: vecinos 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> @@ -19559,12 +19124,12 @@ Si tiene problemas conectando sobre Tor, compruebe también los registros (logs) Outgoing Manual Tor/I2P - + Tor/I2P saliente manual <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + <html><head/><body><p>Configura tus SOCKS proxy Tor e I2P aquí. <br/>Si prefieres utilizar BOB para gestionar automáticamente I2P, visita la otra pestaña.</p></body></html> @@ -19651,7 +19216,7 @@ Si tiene problemas conectando sobre Tor, compruebe también los registros (logs) Preferences - + Preferencias @@ -19659,7 +19224,7 @@ Si tiene problemas conectando sobre Tor, compruebe también los registros (logs) check peers you would like to share private publish key with - Seleccione los vecinos con los que le gustaría compartir su llave de publicación privada + seleccione los vecinos con los que desea compartir su clave privada de publicación @@ -19694,32 +19259,32 @@ Seleccione los amigos con los que quiere compartir su canal. Shared directory - + Directorio compartido Visible name - + Nombre visible Access - + Acceso Visibility - Visibilidad + Visibilidad Add new - + Añadir nuevo Cancel - Cancelar + Cancelar @@ -19744,52 +19309,52 @@ Seleccione los amigos con los que quiere compartir su canal. Choose directory - Elegir directorio + Elegir directorio Change group visibility... - + Cambiar visibilidad del grupo... Choose directory to share... - + Elegir directorio a compartir... Choose visible name... - + Elegir nombre visible... [Unset] (Double click to change) - + [No establecido] (Haga doble clic para cambiarlo) Double click to select which groups of friends can see the files - + Haga doble clic para seleccionar qué grupos de amigos pueden ver los ficheros Double click to change the name that friends will see. - + Haga doble clic para cambiar el nombre que los amigos verán. Double click to change shared directory path - + Haga doble clic para cambiar la ruta al directorio compartido Directory does not exist! Double click to change shared directory path - + ¡El directorio no existe! Haga doble clic para cambiar la ruta al directorio compartido [All friend nodes] - + [Todos los nodos de amigos] @@ -19804,7 +19369,7 @@ Seleccione los amigos con los que quiere compartir su canal. Choose a directory to share - + Elija el directorio a compartir @@ -19838,11 +19403,7 @@ Seleccione los amigos con los que quiere compartir su canal. Configure shared directories - - - - Search files - Buscar archivos + Configurar directorios compartidos @@ -19914,18 +19475,10 @@ Seleccione los amigos con los que quiere compartir su canal. Send retroshare Links Enviar enlaces de RetroShare - - Send retroshare Links to Cloud - Enviar enlace de RetroShare a la nube - - - Add Links to Cloud - Añadir enlaces a la nube - Some files have been omitted - + Algunos ficheros se han omitido @@ -19961,17 +19514,17 @@ Seleccione los amigos con los que quiere compartir su canal. Some files have been omitted because they have not been indexed yet. - + Algunos ficheros se han omitido porque aún no han sido indexados. Search string should be at least 3 characters long. - + La cadena de búsqueda debería tener, al menos, 3 caracteres. More than 3000 results. Add more/longer search words to select less. - + Más de 3000 resultados. Utiliza más palabras o de mayor longitud para mostrar menos. @@ -20081,10 +19634,6 @@ Seleccione los amigos con los que quiere compartir su canal. SplashScreen - - Load profile - Cargar perfil - Load configuration @@ -20103,15 +19652,11 @@ Seleccione los amigos con los que quiere compartir su canal. RetroShare RetroShare - - Login - Iniciar sesión - Password - Contraseña + Contraseña @@ -20137,9 +19682,13 @@ Las identidades/lugares actuales no se modificará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:'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;">New Profile/Node</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:'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;">Nuevo perfil/Nodo</span></a></p></body></html> @@ -20149,12 +19698,12 @@ p, li { white-space: pre-wrap; } Missing PGP Certificate - Falta el certificado GPG + Falta el certificado PGP Wrong password - + ¡Contraseña errónea! @@ -20163,18 +19712,6 @@ p, li { white-space: pre-wrap; } Warning Aviso - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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"> -<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="Crear nuevo perfil..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">Administrar perfiles y nodos...</span></a></p></body></html> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. @@ -20296,7 +19833,7 @@ Esta elección puede revertirse en la configuración. Gxs Transport - + Transporte Gxs @@ -20488,7 +20025,7 @@ Esta elección puede revertirse en la configuració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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20501,7 +20038,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20597,7 +20134,7 @@ p, li { white-space: pre-wrap; } Remove this item - + Eliminar este elemento @@ -20752,58 +20289,58 @@ p, li { white-space: pre-wrap; } Dialog - Diálogo + Diálogo Setting up Tor... - + Configurando Tor... Tor status: - + Estado Tor: Unknown - + Desconocido Not started - + No iniciado Hidden service address: - + Dirección del servicio oculto: Tor bootstrap status: - + Estado de la secuencia Tor: Not set - + No establecido Onion address: - + Dirección onion: Check that Tor is accessible in your executable path - + Comprueba que Tor es accesible en tu ruta de ejecución [Waiting for Tor...] - + [Esperando a Tor...] @@ -20811,28 +20348,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + <p>Esta versión de RetroShare utiliza Tor para conectar con tus amigos.</p> Tor is currently offline - + Tor está actualmente fuera de línea Tor is OK - + Tor está OK No tor configuration - + Sin configuración de Tor @@ -20850,98 +20387,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Directorios compartidos Automatically share incoming directory (Recommended) - Compartir automáticamente la carpeta de descargas incompletas (recommendado) + Compartir automáticamente el directorio de entrada (recomendado) Edit Share - + Editar compartidos Auto-check shared directories every - + Comprobar automáticamente los directorios compartidos cada minute(s) - + minuto(s) <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + <html><head/><body><p>Le dice a RetroShare que siga los enlaces. Se ocupa de los auto-redireccionamientos (loops) y los directorios duplicados. Si no está marcado, RetroShare simplemente ignorará los enlaces simbólicos tanto para ficheros como para directorios.</p></body></html> follow symbolic links - + seguir enlaces simbólicos <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + <html><head/><body><p>Al seguir enlaces simbólicos, RetroShare puede encontrar el mismo archivo/directorio más de una vez. Si se selecciona, esta opción hará que RetroShare ignore estos casos. Esta opción protege a RetroShare ante bucles entre directorios.</p></body></html> Ignore duplicate files/directories - + Ignora archivos/directorios duplicados Maximum depth (0=unlimited): - + Profundidad máxima (0=ilimitada): <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + <html><head/><body><p>Este valor te permite limitar la profundidad en la jerarquía de directorios que estás indexando, empezando por el directorio base. Si permites a RetroShare seguir enlaces simbólicos y tienes desactivado &quot;Ignorar archivos/directorios duplicados&quot;, esta opción evitará que RetroShare entre en un bucle indefinidamente mientras analiza directorios.</p></body></html> Ignore files ending with: - + Ignorar archivos que terminen en: <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + <html><head/><body><p>Añade cualquier combinación de sufijos separados por &quot;;&quot; por ejemplo &quot;~;.bak;.old&quot;</p></body></html> ignore files starting with: - + Ignorar archivos que empiecen por: <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + <html><head/><body><p>Añade cualquier combinación de prefijos, separados por &quot;;&quot; por ejemplo &quot;.;~&quot;</p></body></html> Incoming Directory - + Directorio de entrada Browse - + Explorar Partials Directory - + Directorio de parciales Maximum uploads per friend (0 = no limit) - + Máximo de subidas por amigo (0 = sin límite) @@ -20956,12 +20493,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Cifrado extremo-a-extremo: Allow direct download: - + Permitir descarga directa: @@ -20986,50 +20523,58 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + <html><head/><body><p>Los túneles anónimos se pueden cifrar de extremo-a-extremo. Para mantener la compatibilidad hacia atrás, esto se puede hacer opcional (escogiendo &quot;Aceptado&quot;), pero al final, todos los nodos RetroShare se cambiarán a &quot;Implementado&quot;, lo que significará que todas las transferencias anónimas se cifrarán extremo-a-extremo. Con &quot;Aceptado&quot;, es probable que transfiera los datos usando el doble de túneles, ya que no hay forma de saber que un túnel cifrado y otro sin cifrar transfieren en realidad desde la misma fuente.</p></body></html> Accepted - + Aceptado Enforced - + Implementado <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + <html><head/><body><p>Cómo RS gestiona la descarga directa.</p></body></html> Yes - + No - No + No Per user - + Por usuario <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> es capaz de transferir datos y peticiones de búsqueda entre vecinos que no necesariamente son amigos. Sin embargo, este tráfico sólo transita a través de una lista de amigos conectados, y es anónimo.</span></p> +<p style="-qt-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;"><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-size:8pt;">Puede establecer indicativos para cada directorio compartido por separado en el cuadro de diálogo de ficheros compartidos para que sean:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Explorables por amigos</span>: Los ficheros son vistos por sus amigos.</li> +<li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Compartidos anónimamente</span>: Los ficheros son alcanzables anónimamente a través de túneles anónimos F2F (entre amigos).</li></ul></body></html> @@ -21049,22 +20594,22 @@ p, li { white-space: pre-wrap; } <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 archivos. </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 vecino. </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> Set Incoming Directory - + Establecer directorio de entrada Set Partials Directory - + Establecer directorio de parciales Files - Archivos + Ficheros @@ -21126,21 +20671,6 @@ p, li { white-space: pre-wrap; } Completed Completado - - Speed - i.e: Download speed - Velocidad - - - Progress / Availability - i.e: % downloaded - Progreso / Disponibilidad - - - Sources - i.e: Sources - Fuentes - Status @@ -21156,16 +20686,6 @@ p, li { white-space: pre-wrap; } Remaining Pendiente - - Download time - i.e: Estimated Time of Arrival / Time left - Tiempo estimado para completar - - - Peer - i.e: user name - Vecino - Progress @@ -21220,7 +20740,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Vecino + Vecino @@ -21369,82 +20889,16 @@ p, li { white-space: pre-wrap; } Choose directory Elegir directorio - - Failed - Fallido - - - Okay - Bien - - - Waiting - Esperando - - - Downloading - Descargando - - - Complete - Completo - - - Queued - Esperando - - - Paused - Pausado - - - Checking... - Comprobando... - - - Unknown - Desconocido - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Si el hash de los datos descargados -no se corresponde con el hash anunciado -por el archivo de origen. Es probable -que los datos estén dañados. - -RetroShare le pedirá a la fuente un mapa -detallado de los datos, comparará y anulará los -bloques defectuosos y los descargará de nuevo. - -¡Trate de ser paciente! - - - Transferring - Transfiriendo - - - Uploading - Enviando - Anonymous end-to-end encrypted tunnel 0x - + Túnel anónimo cifrado extremo-a-extremo 0x Tunnel - + Túnel @@ -21504,15 +20958,6 @@ bloques defectuosos y los descargará de nuevo. Please enter a new--and valid--filename Por favor, introduzca un nuevo - y válido - nombre de archivo - - Last Time Seen - i.e: Last Time Receiced Data - Última vez vista - - - UserID - ID de usuario - @@ -21620,11 +21065,6 @@ bloques defectuosos y los descargará de nuevo. File Transfers Transferencia de archivos - - Path - i.e: Where file is saved - Ruta - Path @@ -21668,21 +21108,17 @@ bloques defectuosos y los descargará de nuevo. %1 tunnels - + %1 túneles Anonymous tunnel 0x Túnel anónimo 0x - - version: - versión: - Files - Archivos + Ficheros @@ -21714,7 +21150,7 @@ bloques defectuosos y los descargará de nuevo. Empty - + Vacío @@ -21725,7 +21161,7 @@ bloques defectuosos y los descargará de nuevo. Friends Directories [updating...] - + Directorios de amigos [actualizando...] @@ -21735,7 +21171,7 @@ bloques defectuosos y los descargará de nuevo. My Directories [updating...] - + Mis directorios [actualizando...] @@ -21745,7 +21181,7 @@ bloques defectuosos y los descargará de nuevo. # Files - + # Ficheros @@ -21765,22 +21201,22 @@ bloques defectuosos y los descargará de nuevo. Access - + Acceso Visibility - Visibilidad + Visibilidad Column %1 - + Columna %1 Row %1 - + Fila %1 @@ -21829,7 +21265,7 @@ bloques defectuosos y los descargará de nuevo. Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Petición de ID: %1 hace %3 segundos desde %2 %4 (%5 hits) @@ -22077,38 +21513,22 @@ bloques defectuosos y los descargará de nuevo. Port: - Puerto: + Puerto: Allow access from all IP addresses (Default: localhost only) - + Permitir el acceso desde todas las direcciones IP (Predeterminado: sólo localhost (nodo local)) Apply setting and start browser - + Aplicar configuración e iniciar navegador Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - Puerto: - - - allow access from all IP adresses (Default: localhost only) - permitir el acceso desde todas las direcciones IP (Predeterminado: sólo localhost (nodo local)) - - - apply setting and start browser - aplicar configuración e inciar navegador - - - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - 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. + 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. @@ -22247,7 +21667,7 @@ bloques defectuosos y los descargará de nuevo. Publish with XXX Key - Publicar con llave XXX + Publicar con la clave XXX @@ -22762,134 +22182,134 @@ bloques defectuosos y los descargará de nuevo. Do you accept connections signed by this profile? - + ¿Acepta las conexiones firmadas por este perfil? Name of the profile - + Nombre del perfil This column indicates trust level and whether you signed the profile PGP key - + Esta columna indica el nivel de confianza y si ha firmado la clave PGP del perfil Did that peer sign your own profile PGP key - Ha firmado ese vecino la propia clave PGP de usted + Ha firmado ese vecino la propia clave PGP de usted PGP Key Id of that profile - + Identificación asociada a la clave PGP de ese perfil Last time this key was used (received time, or to check connection) - + Última vez que se usó esta clave (hora de recepción, o para comprobar conexión) Connections - + Conexiones Profile - + Perfil Trust level - Nivel de confianza + Nivel de confianza Has signed your key? - + ¿Ha firmado su clave? Id - + ID Last used - Últimos usados + Último uso: Personal signature - Firma personal + Firma personal Marginally trusted peer - Vecino de confianza marginal + Vecino de confianza marginal Fully trusted peer - Vecino de plena confiaza + Vecino de plena confiaza Untrusted peer - Vecino sin confianza + Vecino sin confianza Yes - + No - No + No Last hour - Última hora + Última hora Today - Hoy + Hoy Never - Nunca + Nunca %1 days ago - + hace %1 días Accepted - + Aceptado - - + - PGP key signed by you - La llave GPG firmada por usted + La llave GPG firmada por usted has authenticated you. Right-click and select 'make friend' to be able to connect. - me ha autentificado. Pulse con el -botón derecho y seleccione hacer amigo para conectar. + me ha autentificado. +Clic derecho y seleccione "hacer amigo" para conectar. - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_fi.qm b/retroshare-gui/src/lang/retroshare_fi.qm index a98807c53..71cfc2663 100644 Binary files a/retroshare-gui/src/lang/retroshare_fi.qm and b/retroshare-gui/src/lang/retroshare_fi.qm differ diff --git a/retroshare-gui/src/lang/retroshare_fi.ts b/retroshare-gui/src/lang/retroshare_fi.ts index a92885350..0881ffeff 100644 --- a/retroshare-gui/src/lang/retroshare_fi.ts +++ b/retroshare-gui/src/lang/retroshare_fi.ts @@ -1,6 +1,4 @@ - - - + AWidget @@ -20,7 +18,7 @@ About RetroShare - Tietoja RetroSharesta + Tietoja Retrosharesta @@ -81,7 +79,7 @@ Only Hidden Node - + Ainoastaan piilotettu solmu @@ -112,11 +110,11 @@ RetroShare - RetroShare + Retroshare - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Järjestelmän oletuskomentoa tälle tiedostolle ei voitu selvittää @@ -332,7 +330,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -454,7 +452,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -502,7 +500,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -515,7 +513,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -534,7 +532,7 @@ p, li { white-space: pre-wrap; } Choose the language used in RetroShare - Valitse RetroSharessa käytettävä kieli + Valitse Retrosharessa käytettävä kieli @@ -549,7 +547,7 @@ p, li { white-space: pre-wrap; } Choose RetroShare's interface style - Valitse RetroSharen käyttöliittymän tyyli + Valitse Retrosharen käyttöliittymän tyyli @@ -718,7 +716,7 @@ p, li { white-space: pre-wrap; } RetroShare - RetroShare + Retroshare @@ -838,7 +836,7 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - RetroSharen kaistanleveyden käyttö + Retrosharen kaistanleveyden käyttö @@ -934,12 +932,12 @@ p, li { white-space: pre-wrap; } Average - Keskivertonopeudella + Keskiverto Total - + Yhteensä @@ -1060,17 +1058,17 @@ p, li { white-space: pre-wrap; } Legend: - + Seloste: Current - + Nykyinen Total - + Yhteensä @@ -1108,10 +1106,6 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - Osallistujat - Name @@ -1150,7 +1144,7 @@ p, li { white-space: pre-wrap; } Invite friends to this lobby - Kutsu ystäviä keskusteluaulaan + Kutsu ystäviä keskusteluhuoneeseen @@ -1167,10 +1161,6 @@ p, li { white-space: pre-wrap; } Topic: %1 Aihe: %1 - - Lobby management - Aulan hallinta - %1 changed his name to: %2 @@ -1219,80 +1209,80 @@ p, li { white-space: pre-wrap; } Leave this chat room (Unsubscribe) - + Poistu keskusteluhuoneesta (lopeta tilaus) Welcome to chat room %1 - + Tervetuloa keskusteluhuoneeseen %1 Room chat - + Keskusteluhuone Decryption failed. - + Salauksen purkaminen epäonnistui. Signature mismatch - + Ristiriita allekirjoituksessa Unknown key - + Tuntematon avain Unknown hash - + Tuntematon tiiviste Unknown error. - + Tuntematon virhe. Cannot start distant chat - + Etäisen keskustelun aloittaminen ei onnistu Distant chat cannot be initiated: - + Etäistä keskustelua ei kyetä aloittamaan: %1 has left the room. - + %1 poistui huoneesta. Chat room management - + Keskusteluhuoneen hallinta %1 joined the room. - + %1 saapui huoneeseen. Unsubscribe from chat room - + Lopeta keskusteluhuoneen tilaus Do you want to unsubscribe to this chat room? - + Haluatko lopettaa keskusteluhuoneen tilauksen? @@ -1300,7 +1290,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - Näytä keskusteluaula + Näytä keskusteluhuone @@ -1308,7 +1298,7 @@ p, li { white-space: pre-wrap; } Chats - + Keskustelut @@ -1333,7 +1323,7 @@ p, li { white-space: pre-wrap; } Unknown Lobby - + Tuntematon huone @@ -1363,111 +1353,113 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + Yksityiset tilatut keskusteluhuoneet Public Subscribed chat rooms - + Julkiset tilatut keskusteluhuoneet Private chat rooms - + Yksityiset keskusteluhuoneet Public chat rooms - + Julkiset keskusteluhuoneet <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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;Keskusteluhuoneet</h1><p>Keskusteluhuoneissa voit käydä nimettömiä keskusteluja lukuisien ihmisten kanssa ilman tarvetta ystävystyä.</p><p>Keskusteluhuone voi olla julkinen (ystäviesi nähtävissä) tai yksityinen (ystäväsi eivät näe sitä, ellet kutsu heitä painamalla <img src=":/images/add_24x24.png" width=%2/>). Kun sinut on kutsuttu yksityiseen huoneeseen, näet sen ystäviesi käyttäessä sitä</p><p>Vasemmalla oleva luettelo näyttää keskusteluhuoneet, joissa on ystäviäsi. Voit<ul> <li>Käyttää hiiren oikeata painiketta luodaksesi uuden huoneen</li><li>Kaksoisnapauttaa huonetta liittyäksesi keskusteluun</li></ul>Huomaa, että tietokoneesi on oltava oikeassa ajassa, jotta keskusteluhuoneet toimivat kunnolla. Tarkista siis järjestelmäsi kello!</p> Create chat room - + Luo keskusteluhuone Leave this room - + Poistu huoneesta Create a non anonymous identity and enter this room - + Luo nimellä varustettu henkilöllisyys ja astu huoneeseen Create an identity and enter this chat room - + Luo henkilöllisyys ja astu keskusteluhuoneeseen Enter this chat room - + Astu keskusteluhuoneeseen Enter this chat room as... - + Astu keskusteluhuoneeseen henkilöllisyydellä... Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + Et voi liittyä tähän keskusteluhuoneeseen oletushenkilöllisyydelläsi, koska se on nimetön ja huone kieltää sen. You're not subscribed to this chat room; Double click-it to enter and chat. - + Et ole tilannut huonetta: kaksoisnapauta siirtyäksesi keskustelemaan. You will need to create a non anonymous identity in order to join this chat room. - + Sinun on luotava nimellä varustettu henkilöllisyys voidaksesi liittyä huoneeseen. You will need to create an identity in order to join chat rooms. - + Sinun on luotava henkilöllisyys voidaksesi liittyä keskusteluhuoneisiin. No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + Keskusteluhuonetta ei ole valittu. +Valitse huoneita vasemmalta nähdäksesi tietoja. +Kaksoisnapauta huonetta siirtyäksesi keskustelemaan. %1 invites you to chat room named %2 - + %1 kutsuu sinut keskusteluhuoneeseen nimeltä %2 Choose a non anonymous identity for this chat room: - + Valitse nimellä varustettu henkilöllisyys tätä keskusteluhuonetta varten: Choose an identity for this chat room: - + Valitse henkilöllisyys tätä keskusteluhuonetta varten: Create chat lobby - Luo keskusteluaula + Luo keskusteluhuone @@ -1478,7 +1470,7 @@ Double click a chat room to enter and chat. Selected lobby info - Tietoja valitusta aulasta + Tietoja valitusta huoneesta @@ -1493,7 +1485,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + Nimettömät tunnisteet hyväksytty @@ -1538,17 +1530,17 @@ Double click a chat room to enter and chat. Chat rooms - + Keskusteluhuoneet Chat room Name: - + Keskusteluhuoneen nimi: Chat room Id: - + Keskusteluhuoneen tunniste: @@ -1563,7 +1555,7 @@ Double click a chat room to enter and chat. Security: - + Tietoturva: @@ -1583,31 +1575,31 @@ Double click a chat room to enter and chat. Default identity is anonymous - + Oletushenkilöllisyys on nimetön No anonymous IDs - + Ei nimettömiä tunnisteita Show - Näytä + Näytä column - + sarake Chats - + Keskustelut @@ -1665,27 +1657,27 @@ Double click a chat room to enter and chat. Distant Chat - + Etäinen keskustelu Everyone - + Jokainen Contacts - Kontaktit + Kontaktit Nobody - + Ei kukaan Accept encrypted distant chat from - + Hyväksy salattu etäinen keskustelu: @@ -1710,12 +1702,12 @@ Double click a chat room to enter and chat. Enable custom font size - Käytä mukautettjua kirjasinkokoja + Käytä mukautettuja kirjasinkokoja Minimum font size - + Kirjasin vähimmäiskoko @@ -1740,17 +1732,17 @@ Double click a chat room to enter and chat. Send as plain text by default - + Lähetä muokkaamattomana tekstinä oletuksena Load embedded images - Lataa upotetut kuvat + Lataa upotetut kuvat Chat Lobby - Keskusteluaula + Keskusteluhuone @@ -1760,7 +1752,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + Älä lähetä kirjoittamista koskevia ilmoituksia @@ -1818,14 +1810,14 @@ Double click a chat room to enter and chat. Style: - + Tyyli: Variant: - + Muunnelma: @@ -1842,7 +1834,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + Valitse oletuskirjasin keskustelulle. @@ -1877,7 +1869,7 @@ Double click a chat room to enter and chat. Outgoing offline message - Lähtevä viesti offline-tilassa + Lähtevä viesti ei yhteyttä-tilassa @@ -1892,21 +1884,17 @@ Double click a chat room to enter and chat. UserName - + KäyttäjäNimi /me is sending a message with /me - - - - Chat - Keskustelu + /me on lähettämässä viestiä /me <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">Tässä välilehdessä voit määrittää, kuinka monta chat-viestiä RetroShare pitää tallennettuna kiintolevylle ja kuinka paljon edellisestä keskustelusta näytetään eri keskustelutoiminnoissa. Säilytyksen enimmäisaika mahdollistaa vanhojen viestien poisheittämisen ja estää keskusteluhistorian täyttymisen (esim. keskusteluaulat ja etäiset keskustelut).</p></body></html> + <html><head/><body><p align="justify">Tässä välilehdessä voit määrittää, kuinka monta chat-viestiä Retroshare pitää tallennettuna kiintolevylle ja kuinka paljon edellisestä keskustelusta näytetään eri keskustelutoiminnoissa. Säilytyksen enimmäisaika mahdollistaa vanhojen viestien hävittämisen ja estää keskusteluhistorian täyttymisen (esim. keskusteluaulat ja etäiset keskustelut).</p></body></html> @@ -1971,7 +1959,7 @@ Double click a chat room to enter and chat. Maximum count for coloring matching text - + Vastaavan tekstin enimmäismäärä väritykselle @@ -1981,37 +1969,37 @@ Double click a chat room to enter and chat. Default identity for chat lobbies: - + Oletushenkilöllisyys keskusteluauloihin: Show Bar by default - + Näytä palkki oletuksena Private chat invite from - + Kutsu yksityiseen keskusteluun henkilöltä Name : - + Nimi: PGP id : - + PGP-tunniste : Valid until : - + Voimassa tähän asti : Chats - + Keskustelut: @@ -2093,7 +2081,7 @@ Double click a chat room to enter and chat. Insert emoticon - + Syötä hymiö @@ -2103,7 +2091,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2159,48 +2147,48 @@ Double click a chat room to enter and chat. Quote - Lainaa + Lainaa Quotes the selected text - + Lainaa valitun tekstin Drop Placemark - + Pudota paikkamerkitsin Insert horizontal rule - + Syötä vaakaviiva Save image - + Tallenna kuva Send as PlainText - + Lähetä muokkaamattomana tekstinä Send as plain text without font. - + Lähetä muokkaamattomana tekstinä ilman kirjasinta. Don't replace tag with Emote Icon. - + Älä korvaa kirjoitusta hymiöllä. Show Hidden Images - + Näytä piilotetut kuvat @@ -2211,18 +2199,20 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Jäljellä on %1 merkkiä +HTML-muuntamisen jälkeen. Warning: This message is too big of %1 characters after HTML conversion. - + Varoitus: Tämä viesti on %1 merkkiä liian +iso HTML-muuntamisen jälkeen. Choose your font. - + Valitse kirjasin. @@ -2257,11 +2247,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Lähettämäsi viestit toimitetaan kunhan ystäväsi palaa jälleen linjoille + Lähettämäsi viestit toimitetaan kunhan ystäväsi palaa jälleen linjoille. @@ -2318,22 +2304,22 @@ after HTML conversion. (Status) - + (Tila) Set text font & color - + Aseta tekstin kirjasinlaji & väri Attach a File - + Liitä tiedosto WARNING: Could take a long time on big history. - + VAROITUS: Voi viedä pitkän ajan, jos historiadataa on paljon. @@ -2344,53 +2330,54 @@ after HTML conversion. <b>Mark this selected text</b><br><i>Ctrl+M</i> - + <b>Merkitse tämä valittu teksti</b><br><i>Ctrl+M</i> Person id: - + Henkilön tunniste: Double click on it to add his name on text writer. - + +Kaksoisnapsauta sitä lisätäksesi hänen nimensä tekstinkirjoittajaan. Unsigned - + Allekirjoittamaton items found. - + Kohteita löytyi. No items found. - + Kohteita ei löytynyt. <b>Return to marked text</b><br><i>Ctrl+M</i> - + <b>Palaa merkittyyn tekstiin</b><br><i>Ctrl+M</i> Type a message here - + Kirjoita viesti tähän Don't stop to color after - + Älä lopeta värittämistä jälkeen items found (need more CPU) - + Kohteita löytyi (vaatii konetehoa) @@ -2403,7 +2390,7 @@ Double click on it to add his name on text writer. Empty Circle - + Tyhjä piiri @@ -2545,10 +2532,6 @@ Double click on it to add his name on text writer. Details Tiedot - - Peer Address - Vertaisen osoite - @@ -2563,12 +2546,12 @@ Double click on it to add his name on text writer. Node info: - + Solmun tiedot: Current address: - + Nykyinen osoite: @@ -2581,10 +2564,6 @@ Double click on it to add his name on text writer. Port Portti - - Addresses list - Osoiteluettelo - Include signatures @@ -2595,7 +2574,7 @@ Double click on it to add his name on text writer. RetroShare - RetroShare + Retroshare @@ -2614,64 +2593,60 @@ Double click on it to add his name on text writer. Not connected Ei yhteyttä - - Peer Addresses - Vertaisten osoitteet - Retroshare node details - + Retroshare solmun tiedot Node name : - + Solmun nimi: Status : - + Tila : Last Contact : - + Viimeisin kontakti : Retroshare version : - + Retrosharen versio : Node ID : - + Solmun tunniste : Name: - Nimi: + Nimi: Status message: - + Tilaviesti: List of known addresses: - + Tunnetut osoitteet: Retroshare Certificate - + Retroshare varmenne Hidden Address - + Piilotettu osoite @@ -2682,47 +2657,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <p>Tämä varmenne sisältää: <li>a <b>node ID</b> and <b>name</b> - + <li> <b>solmun tunniste</b> ja <b>nimi</b> an <b>onion address</b> and <b>port</b> - + <b>onion-osoite</b> ja <b>portti</b> an <b>IP address</b> and <b>port</b> - + <b>IP-osoite</b> ja <b>ja</b> <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <p>Voit käyttää tätä varmennetta luodaksesi uusia ystäviä. Lähetä se sähköpostitse tai anna se tavatessanne.</p> <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>Tämä on solmun <span style=" font-weight:600;">OpenSSL</span> -varmenteen tunniste, joka on allekirjoitettu ylläolevalla <span style=" font-weight:600;">PGP</span> -avaimella. </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>Tätä salaus-metodia käyttää <span style=" font-weight:600;">OpenSSL</span>. Yhteys ystäväsolmuihin</p><p>on aina vahvasti salattu ja jos DHE on läsnä yhteys edelleen käyttää</p><p>&quot;täydellistä forward secrecy-ominaisuutta&quot; (salausavaimen murtaminen ei johda aiemmin salattujen viestien tietoturvan vaarantumiseen).</p></body></html> with - + kanssa external signatures</li> - + ulkoiset allekirjoitukset</li> @@ -2751,7 +2726,8 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &Lähetä kutsu sähköpostilla + (Ystäväsi saa sähköpostin, jossa on ohjeet Retrosharen lataamiseksi) @@ -2777,17 +2753,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Avaa ystäväsi varmenne tiedostosta Open certificate - + Avaa varmenne Please, paste your friend's Retroshare certificate into the box below - + Ole hyvä ja liitä ystäväsi Retroshare-varmenne allaolevaan laatikkoon @@ -2847,67 +2823,67 @@ Double click on it to add his name on text writer. RetroShare ID - RetroSharen tunniste + Retrosharen tunniste Use RetroShare ID for adding a Friend which is available in your network. - Käytä RetroShare-tunnistetta verkossasi olevan ystävän lisäämiseen. + Käytä Retroshare-tunnistetta verkossasi olevan ystävän lisäämiseen. Add Friends RetroShare ID... - Lisää ystävän RetroShare-tunniste... + Lisää ystävän Retroshare-tunniste... Paste Friends RetroShare ID in the box below - Liitä ystävän RetroShare-tunniste allaolevaan laatikkoon + Liitä ystävän Retroshare-tunniste allaolevaan laatikkoon Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - Anna ystäväsi RetroShare-tunniste, tyyliin Vertainen@BDE8D16A46D938CF + Anna ystäväsi Retroshare-tunniste, tyyliin Vertainen@BDE8D16A46D938CF RetroShare is better with Friends - + Retroshare on parempi ystävien kanssa Invite your Friends from other Networks to RetroShare. - + Kutsu ystäväsi muista verkoista Retroshareen. GMail - + GMail Yahoo - + Yahoo Outlook - + Outlook AOL - + AOL Yandex - + Yandex Email - Sähköposti + Sähköposti @@ -2969,13 +2945,14 @@ Double click on it to add his name on text writer. Node: - + Solmu: 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. - + Huomioithan, että Retroshare edellyttää kohtuuttomia määriä tietoliikennekaistaa, muistia ja suoritintehoa, jos lisäät paljon ystäviä. Voit lisätä niin monta ystävää kuin haluat, mutta yli 40 luultavasti vaatii liikaa +resursseja. @@ -2992,47 +2969,47 @@ 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: - + Tämä aputoiminta auttaa sinua ottamaan yhteyden ystäviisi Retroshare-verkossa.<br>Valitse miten haluaisit lisätä ystävän: Enter the certificate manually - + Anna varmenne manuaalisesti Enter RetroShare ID manually - + Anna Retroshare tunniste manuaalisesti &Send an Invitation by Web Mail Providers - + &Lähetä kutsu webmailpalvelun kautta Recommend many friends to each other - + Suosittele useita ystäviä toisilleen RetroShare certificate - + Retroshare varmenne Please paste below your friend's Retroshare certificate - + Ole hyvä ja liitä alle ystäväsi Retroshare-varmenne Paste certificate - + Liitä varmenne <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + <html><head/><body><p>Tämä laatikko vaatii sinun ystäväsi Retroshare-varmenteen. VAROITUS: se on erilainen, kuin ystäväsi profiiliavain. Älä liitä ystäväsi profiiliavainta tähän (edes osaa siitä). Se ei tule toimimaan.</p></body></html> @@ -3071,7 +3048,7 @@ resources. Make Friend - Tee ystäväksi + Ystävysty @@ -3091,7 +3068,7 @@ resources. <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;">Ystäväsi avaimen allekirjoittamisella ilmaiset luottamuksesi tähän ystävään muille ystävillesi. Allekirjoitukset alla kryptograafisesti todistavat, että luettelon avaimien omistajat tunnistavat nykyisen PGP-avaimen aidoksi.</span></p></body></html> @@ -3182,12 +3159,12 @@ resources. Certificate appears to be valid - + Varmenne näyttää olevan kelvollinen Not a valid Retroshare certificate! - + Ei kelvollinen Retroshare-varmenne! @@ -3200,31 +3177,33 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Kyllä. Warning: In your File-Transfer option, you select allow direct download to No. - + +Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + Tämä on oma varmenteesi! Et haluaisi olla oma ystäväsi. Ethän? This key is already on your trusted list - + Tämä avain on jo luotettujen luettelossa You have already signed this key - + Olet jo allekirjoittanut tämän avaimen @@ -3285,7 +3264,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Invite - RetroShare-kutsu + Retroshare-kutsu @@ -3313,7 +3292,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - RetroSharen varmenne (*.rsc );;Kaikki tiedostot (*) + Retrosharen varmenne (*.rsc );;Kaikki tiedostot (*) @@ -3355,32 +3334,32 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP-Addr: - + IP-osoite: IP-Address - + IP-osoite: Show Advanced options - + Näytä lisäasetukset <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;">Ystäväsi avaimen allekirjoittamisella ilmaiset luottamuksesi tähän ystävään muille ystävillesi. Se auttaa heitä päättämään salliako yhteydet siitä avaimesta perustuen sinun omaan luottamukseen. Avaimen allekirjoittaminen on täysin vapaaehtoista, eikä sitä voi perua, joten tee niin harkiten.</span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">Retroshare käy ajoittain läpi ystäväluettelosi siirtojasi vastaavien selattavien tiedostojen varalta, jotta voitaisiin muodostaa suora siirtoyhteys. Tällaisessa tapauksessa ystäväsi tietää, että lataat tiedostoa.</p><p align="justify">Estääksesi toiminnan tämän ystävän tapauksessa, poista rasti tästä ruudusta. Voit silti muodostaa suoran siirtoyhteyden halutessasi, esim. lataamalla suoraan ystäväsi tiedostoluettelosta. Tätä asetusta sovelletaan kaikkiin saman solmun sijainteihin.</p></body></html> <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. Applied to all locations of the same node.</p></body></html> - + <html><head/><body><p>Tämä asetus sallii automaattisen suositellun tiedoston latauksen viestistä, joka saapuu tästä solmusta. Tätä voidaan esimerkiksi käyttää tiedostojen lähettämiseen omien solmujesi kesken. Sovelletaan kaikkiin sijainteihin samasta solmusta.</p></body></html> @@ -3400,7 +3379,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + Teksti alapuolella on Retroshare-varmenteesi. Sinun täytyy toimittaa se ystävällesi @@ -3456,18 +3435,18 @@ vaikkette ystävystyisikään. Invalid node id. - + Virheellinen solmutunniste. Auto-download recommended files - + Lataa automaattisesti suositellut tiedostot Can be used as direct source - + Voidaan käyttää suorana lähteenä @@ -3483,7 +3462,7 @@ vaikkette ystävystyisikään. No IP in this certificate! - + Ei IP-osoitetta tässä varmenteessa! @@ -3493,22 +3472,22 @@ vaikkette ystävystyisikään. Added with certificate from %1 - + Varmenne lisätty %1 Paste Cert of your friend from Clipboard - + Liitä ystäväsi varmenne leikepöydältä Certificate Load Failed:can't read from file %1 - + Varmenteen avaaminen epäonnistui:ei voitu lukea tiedostosta %1 Certificate Load Failed:something is wrong with %1 - + Varmenteen lataus epäonnistui: jotain on vialla %1 @@ -3585,13 +3564,21 @@ vaikkette ystävystyisikää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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lucida Grande'; font-size:13pt;">Tämä vimpain näyttää yhteyden muodostamisen edistymisen sinun uuteen vertaiseen.</span></p> +<p 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 on hyödyllinen ongelmanratkaisemisessa.</span></p> +<p style="-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;"><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:'Lucida Grande'; font-size:13pt;">Jos olet kokenut RS:n käyttäjä, tai luotat siihen, että RS tulee toimimaan oikein</span></p> +<p 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;">voit sulkea sen.</span></p></body></html> @@ -3728,7 +3715,7 @@ p, li { white-space: pre-wrap; } Retroshare will continue connecting in the background - RetroShare jatkaa yhdistämistä taustalla + Retroshare jatkaa yhdistämistä taustalla @@ -3849,7 +3836,7 @@ p, li { white-space: pre-wrap; } Retroshare has tried All Known Addresses, with no success - RetroShare on kokeillut kaikkia tunnettuja osoitteita tuloksetta + Retroshare on kokeillut kaikkia tunnettuja osoitteita tuloksetta @@ -3928,7 +3915,7 @@ p, li { white-space: pre-wrap; } Retroshare has determined that they have DHT switched off - RetroShare havaitsi, että heillä on DHT kytkettynä pois + Retroshare havaitsi, että heillä on DHT kytkettynä pois @@ -3955,26 +3942,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Yritä tuoda täydellinen varmenne uudelleen - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;">Tämä ikkunaelementti näyttää yhdistymisen uuteen vertaiseesi edistymisen.</span></p> -<p 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 on hyödyllinen ratkaistaessa ongelmia.</span></p> -<p style="-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;">Jos olet asiantunteva RS-käyttäjä tai luotat siihen, että RS tekee oikeat ratkaisut,</span></p> -<p 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;">voit sulkea sen.</span></p></body></html> - @@ -4016,7 +3983,7 @@ p, li { white-space: pre-wrap; } They need a Certificate + Node for UDP connections to succeed - + He tarvitsevat varmenteen + solmun, jotta UDP-yhteydet onnistuisivat @@ -4037,12 +4004,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>Piirin nimi, kirjoittajan yhteystiedot ja kutsuttujen jäsenten-luettelo ovat näkyviä kaikille kutsutuille jäsenille. Jos piiri ei ole yksityinen, se tulee olemaan näkyvä myös naapuripiireille, jotka isännöivät kutsuttuja jäseniä.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + <html><head/><body><p>Piirin luoja on täysin vapaaehtoinen. Sen sijaan se on käytännöllinen julkisille piireille, jotta ihmiset tietävät kenen kanssa keskustella jäsenyyden puolista.</p></body></html> @@ -4068,17 +4035,17 @@ p, li { white-space: pre-wrap; } Invited Members - + Kutsutut jäsenet <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + <html><head/><body><p>Tämän luettelon jäsenille tullaan automaattisesti ehdottamaan piiriin liittymistä (hyväksymällä jäsenyyden). He</p><p>eivät tule vastaanottamaan dataa, joka on rajoitettu tälle piirille, ennen kuin tekevät niin.</p></body></html> Known People - + Tuntemasi ihmiset @@ -4093,54 +4060,54 @@ p, li { white-space: pre-wrap; } Name: - Nimi: + Nimi: Contact author: - + Ota yhteys tekijään: [Circle Admin] - + [Piiriylläpito] Distribution: - + Jakelu: <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Julkisesti jaetut piirit ovat näkyviä ystävillesi, jotka tulevat tietämään piiridatan (Luoja, jäsenet, jne)</p></body></html> <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + <html><head/><body><p>Yksityiset (eli itse-rajoitetut) piirit ovat ainoastaan näkyviä niiden piirien kutsutuille jäsenille. Käytännössä piiri käyttää omaa kutsuttujen jäsenien-luetteloaan rajoittaakseen omaa jakeluaan. </p></body></html> Private - Yksityinen + Yksityinen <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + <html><head/><body><p>Piirit voidaan rajoittaa vain toisen piirin jäsenille. Vain jäsenet toisesta piiristä saavat nähdä uuden piirin ja sen sisällön (jäsenluettelo, jne).</p></body></html> Only visible to members of: - + Näkyy ainoastaan jäsenille: RetroShare - RetroShare + Retroshare @@ -4208,28 +4175,28 @@ p, li { white-space: pre-wrap; } Circle name - + Piiri nimi Update - + Päivitä Close - Sulje + Sulje Create New Circle - + Luo uusi piiri Create - Luo + Luo @@ -4239,12 +4206,12 @@ p, li { white-space: pre-wrap; } Add Member - + Lisää jäsen Remove Member - + Poista jäsen @@ -4258,12 +4225,12 @@ p, li { white-space: pre-wrap; } Group Name: - Ryhmän nimi: + Ryhmä nimi: Group ID: - + Ryhmä tunniste: @@ -4273,7 +4240,7 @@ p, li { white-space: pre-wrap; } To be defined - + Määriteltäväksi @@ -4310,9 +4277,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4320,7 +4287,7 @@ 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;">Liitetiedostot:</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;"> Vedä ja pudota ja paina Lisää tiedostoja -painiketta uusien tiedostojen hash-arvojen laskemiseksi.</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;"> Kopioi ja liitä RetroShare-linkkejä jaetuista tiedostoistasi.</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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Kopioi ja liitä Retroshare-linkkejä jaetuista tiedostoistasi.</span></p></body></html> @@ -4366,12 +4333,12 @@ p, li { white-space: pre-wrap; } Paste RetroShare Links - Liitä RetroShare-linkit + Liitä Retroshare-linkit Paste RetroShare Link - Liitä RetroShare-linkki + Liitä Retroshare-linkki @@ -4398,7 +4365,7 @@ p, li { white-space: pre-wrap; } RetroShare - RetroShare + Retroshare @@ -4434,7 +4401,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Muokkaa kanavakirjoitusta @@ -4493,7 +4460,7 @@ p, li { white-space: pre-wrap; } Edit Message - + Muokkaa viestiä @@ -4510,7 +4477,7 @@ p, li { white-space: pre-wrap; } RetroShare - RetroShare + Retroshare @@ -4525,13 +4492,14 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Peruuta foorumiviesti Forum Message has not been sent yet! Do you want to discard this message? - + Foorumiviestiä ei ole lähetetty vielä! +Haluatko hävittää tämän viestin? @@ -4541,12 +4509,12 @@ Do you want to discard this message? No compatible ID for this forum - + Ei yhteensopiva tunniste tälle foorumille None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Mikään sinun henkilöllisyyksistä ei saa kirjoittaa tälle foorumille. Tämä voi johtua siitä, että foorumi on rajattu piirille, johon sinun henkilöllisyydet eivät kuulu tai foorumi-ilmaisimet vaativat PGP-allekirjoitetun henkilöllisyyden. @@ -4567,12 +4535,12 @@ Do you want to discard this message? Post as - + Lähetä Congrats, you found a bug! - + Onnittelut, löysit ohjelmointivirheen! @@ -4580,27 +4548,27 @@ Do you want to discard this message? Create Chat Lobby - Luo keskusteluaula + Luo keskusteluhuone 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. - Keskusteluaula on hajautettu ja nimetön keskusteluryhmä. Kaikki osallistujat näkevät kaikki viestit. Kun aula on luotu, voit kutsua muita ystäviäsi Ystävät-välilehdeltä + Keskusteluhuone on hajautettu ja nimetön keskusteluryhmä. Kaikki osallistujat näkevät kaikki viestit. Kun huone on luotu, voit kutsua muita ystäviäsi Ystävät-välilehdeltä Lobby name: - Aulan nimi: + Huoneen nimi: Lobby topic: - Aulan aihe: + Huoneen aihe: Visibility: - + Näkyvyys: @@ -4615,17 +4583,17 @@ Do you want to discard 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>Jos rastitat tämän, vain PGP-allekirjoitettuja tunnisteita voi käyttää huoneeseen liittymiseen ja siellä keskustelemiseen. Tämä rajoitus estää nimettömän roskaviestittämisen, koska osa huoneessa olevista ihmisistä pystyy paikantamaan roskaviestittäjän solmun.</p></body></html> require PGP-signed identities - + vaatii PGP-allekirjoitetut henkilöllisyydet Security: - + Tietoturva: @@ -4640,17 +4608,17 @@ Do you want to discard this message? Create Chat Room - + Luo keskusteluhuone Put a sensible chat room name here - + Kirjoita tähän järkevä nimi keskusteluhuoneelle Set a descriptive topic here - + Aseta kuvaava keskustelunaihe tähän @@ -4660,7 +4628,7 @@ Do you want to discard this message? Identity to use: - + Käytä henkilöllisyyttä: @@ -4718,7 +4686,7 @@ Do you want to discard this message? A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - RetroShare-linkki, joka sisältää julkisen avaimesi kopioitiin leikepöydälle. Voit liittää sen esim. sähköpostiviestiin tai muulla keinoin lähettää sen ystävällesi. + Retroshare-linkki, joka sisältää julkisen avaimesi kopioitiin leikepöydälle. Voit liittää sen esim. sähköpostiviestiin tai muulla keinoin lähettää sen ystävällesi. @@ -4733,7 +4701,7 @@ Do you want to discard this message? RetroShare - RetroShare + Retroshare @@ -4748,7 +4716,7 @@ Do you want to discard this message? RetroShare Certificate (*.rsc );;All Files (*) - RetroSharen varmenne (*.rsc );;Kaikki tiedostot (*) + Retrosharen varmenne (*.rsc );;Kaikki tiedostot (*) @@ -4763,42 +4731,42 @@ Do you want to discard this message? Node information - + Solmun tiedot PGP Id : - + PGP tunniste: Friend nodes: - + Ystäväsolmut: Copy certificate to clipboard - + Kopioi varmenne leikepöydälle Save certificate to file - + Tallenna varmenne tiedostoksi Node - + Solmu Create new node... - + Luo uusi solmu... show statistics window - + näytä tilastoikkuna @@ -4806,7 +4774,7 @@ Do you want to discard this message? users - + käyttäjät @@ -4819,7 +4787,7 @@ Do you want to discard 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> - + <p>Retroshare käyttää Bittorrentin DHT:tä välityspalvelimena yhteyksille. Se ei "tallenna" sinun IP:täsi DHT:n. Sen sijaan DHT:tä käyttävät sinun ystäväsi saadakseen sinuun yhteyden samalla, kun se käsittelee normaaleja DHT-pyyntöjä. Tilailmaisin muuttuu vihreäksi heti, kun Retroshare DHT-vastauksen yhdeltäkin ystävältä.</p> @@ -4829,13 +4797,13 @@ Do you want to discard this message? DHT Searching for RetroShare Peers - DHT etsii RetroShare-vertaisia + DHT etsii Retroshare-vertaisia RetroShare users in DHT (Total DHT users) - RetroSharen käyttäjiä DHT:ssä (Kaikki DHT:n käyttäjät) + Retrosharen käyttäjiä DHT:ssä (Kaikki DHT:n käyttäjät) @@ -4845,7 +4813,7 @@ Do you want to discard this message? No peer found in DHT - + Vertaisia ei löytynyt DHT:stä @@ -4873,17 +4841,17 @@ Do you want to discard this message? Faster - Nopeammin + Nopeammin Average - Keskivertonopeudella + Keskiverto Slower - Hitaammin + Hitaammin @@ -4926,12 +4894,12 @@ Do you want to discard this message? retroshare link(s) - RetroSharen linkki/linkit + Retrosharen linkki/linkit retroshare link - RetroSharen linkki + Retrosharen linkki @@ -5105,7 +5073,7 @@ Do you want to discard this message? IP - IP + IP @@ -5115,7 +5083,7 @@ Do you want to discard this message? Copy %1 to clipboard - + Kopioi %1 leikepöydälle @@ -5210,7 +5178,7 @@ Do you want to discard this message? NET BAD: Offline - VERKKOVIRHE: Offline-tila + VERKKOVIRHE: Ei yhteyttä-tila @@ -5371,7 +5339,7 @@ Do you want to discard this message? Relays - + Välittäjiä @@ -5394,77 +5362,77 @@ Do you want to discard this message? Net Status: - + Verkon tila: Network Mode: - + Verkon toimintatapa: Nat Type: - + NAT:in tyyppi: Nat Hole: - + NAT-reikä: Connect Mode: - + Yhteyden toimintatapa: Peer Address: - + Vertaisen osoite: Unreach: - + Tavoittamattomissa: Online: - + Linjoilla: Offline: - + Ei yhteyttä: DHT Peers: - + DHT vertaiset: Disconnected: - + Yhteys katkaistu: Direct: - + Suora: Proxy: - + Välityspalvelin: Relay: - + Välitus: Filter: - Suodin: + Suodin: @@ -5475,27 +5443,27 @@ Do you want to discard this message? Peers - Vertaiset + Vertaiset Relay - Välitys + Välitys DHT Graph - + DHT-kaavio Proxy VIA - + Välityspalvelimen kautta Relay VIA - + Välityksen kautta @@ -5761,12 +5729,12 @@ Do you want to discard this message? Document - Dokumentti + Asiakirja RetroShare collection file - RetroShare-kokoelmatiedosto + Retroshare-kokoelmatiedosto @@ -5814,7 +5782,7 @@ Do you want to discard this message? # Files - + # Tiedostot @@ -5844,12 +5812,12 @@ Do you want to discard this message? Column %1 - + Sarake %1 Row %1 - + Rivi %1 @@ -5869,10 +5837,6 @@ Do you want to discard this message? Expand new messages Laajenna uudet viestit - - Forum - Foorumi - Load embedded images @@ -5881,12 +5845,12 @@ Do you want to discard this message? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + <html><head/><body><p>Tämä asetus on raskas ja kehittäjien suunnitelmissa on parantaa sitä. Sillä välin oletuksena tämä on kytketty pois päältä. Jos otat sen käyttöön ja pitkät foorumikirjoitukset latautuvat hitaasti, kytke se pois päältä uudestaan. </p></body></html> Load emoticons (costly) - + Lataa hymiöt (raskas) @@ -5901,7 +5865,7 @@ Do you want to discard this message? Forums - + Foorumit @@ -5915,7 +5879,7 @@ Do you want to discard this message? ID - Tunniste + Tunniste @@ -5925,33 +5889,33 @@ Do you want to discard this message? export friendlist - + vie ystäväluettelo export your friendlist including groups - + vie ystäväluettelo mukaan lukien ryhmät import friendlist - + tuo ystäväluettelo import your friendlist including groups - + tuo ystäväluettelo mukaan lukien ryhmät Show State - + Näytä tila Trusted nodes - + Luetetut solmut @@ -6004,22 +5968,22 @@ Do you want to discard this message? Search ID - Hae tunnistetta + Etsi tunniste Sort by state - + Lajittele tilan perusteella Profile details - + Profiilin tiedot Deny connections - + Torju yhteydet @@ -6044,17 +6008,17 @@ Do you want to discard this message? Send message to this node - + Lähetä viesti tälle solmulle Node details - + Solmun tiedot Recommend this node to... - + Suosittele tätä solmua... @@ -6080,82 +6044,89 @@ Do you want to discard this message? Done! - + Valmis! Your friendlist is stored at: - + Ystäväluettelosi on tallennettu: + (keep in mind that the file is unencrypted!) - + +(muista, että tiedosto on salaamaton!) Your friendlist was imported from: - + Ystäväluettelosi tuotiin: + Done - but errors happened! - + Valmis - mutta virheitä tapahtui! at least one peer was not added - + +ainakin yksi vertainen jäi lisäämättä at least one peer was not added to a group - + +ainakin yksi vertainen jäi lisäämättä ryhmään Select file for importing your friendlist from - + Valitse tiedosto, josta ystäväluettelosi tuodaan Select a file for exporting your friendlist to - + Valitse tiedosto, johon ystäväluettelosi viedään XML File (*.xml);;All Files (*) - + XML-tiedosto (*.xml);;Kaikki tiedostot (*) Error - Virhe + Virhe File is not writeable! - + Tiedostoon ei voi kirjoittaa! + File is not readable! - + Tiedostoa ei voi lukea! + Show Items - + Näytä kohteet @@ -6180,27 +6151,27 @@ at least one peer was not added to a group Node - + Solmu Remove Friend Node - + Poista ystäväsolmu Do you want to remove this node? - + Haluatko poistaa tämän solmun? Send message to whole group - + Lähetä viesti koko ryhmälle Send message - + Lähetä viesti @@ -6208,42 +6179,42 @@ at least one peer was not added to a group Dialog - Dialogi + Ikkuna Message: - Viesti: + Viesti: Recommend friends - Suosittele ystäviä + Suositellut ystävät To - Vastaanottaja + Vastaanottaja Please select at least one friend for recommendation. - Ole hyvä ja valitse ainakin yksi ystävä suositeltavaksi. + Ole hyvä ja valitse ainakin yksi ystävä suositeltavaksi. Please select at least one friend as recipient. - Ole hyvä ja valitse ainakin yksi ystävä vastaanottajaksi. + Ole hyvä ja valitse ainakin yksi ystävä vastaanottajaksi. Recommendation messages sent! - + Suositteluviestit lähetettiin! A recommendation message was sent to each of the chosen friends! - + Suositteluviesti lähetettiin jokaiselle valitulle ystävälle! @@ -6256,7 +6227,7 @@ at least one peer was not added to a group wants to be friend with you on RetroShare - haluaa olla ystäväsi RetroSharessa + haluaa olla ystäväsi Retrosharessa @@ -6274,12 +6245,12 @@ at least one peer was not added to a group Sort by state - + Lajittele tilan perusteella Filter only connected - + Suodata ainoastaan yhdistetyt @@ -6294,12 +6265,12 @@ at least one peer was not added to a group Mark all - Merkitse kaikki + Merkitse kaikki Mark none - + Merkitse mitään @@ -6381,7 +6352,7 @@ at least one peer was not added to a group Create new Chat lobby - Luo uusi keskusteluaula + Luo uusi keskusteluhuone @@ -6401,7 +6372,7 @@ at least one peer was not added to a group <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;Verkko</h1> <p>Verkko-näkymä näyttää ystäväsolmusi: Retroshare-ystäväsolmut, jotka ovat yhdistettynä sinuun. </p> <p>Voit ryhmitellä solmusi ja näin hienosäätää pääsyä tietoihisi, sallia vain tiettyjen solmujen nähdä vain tietyt tiedostosi.</p> <p>Oikealla näet kolme hyödyllistä välilehteä: <ul> <li>Kuulutus lähettää viestejä kaikille linjoilla oleville ystävillesi samanaikaisesti</li> <li>Paikallinen verkko näyttää sinua ympäröivän verkoston, perustuen etsintätietoihin</li> <li>Avainnippu sisältää keräämäsi solmuavaimet, joista useimmat ovat ystäväsolmujesi välittämiä</li> </ul> </p> @@ -6417,12 +6388,12 @@ at least one peer was not added to a group Network graph - + Verkkokaavio Set your status message here. - + Aseta tilaviestisi tähän. @@ -6440,15 +6411,7 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters - Kaikki kentät ovat pakollisia ja minimissään kolme merkkiä - - - Password (check) - Salasana (tarkistus) - - - [Required] Type the same password again here. - [Vaaditaan] Kirjoita sama salasana uudelleen tähän. + Kaikki kentät ovat pakollisia ja vähintään 3 merkkiä @@ -6463,145 +6426,145 @@ at least one peer was not added to a group Use BOB - + Ota BOB käyttöön This password is for PGP - + Tämä salasana on PGP:tä varten You can use it now to create a new node. - + Voit käyttää sitä nyt luodaksesi uuden solmun. Node field is required with a minimum of 3 characters - + Solmukenttä on pakollinen ja vähintään 3 merkkiä Failed to generate your new certificate, maybe PGP password is wrong! - + Uuden varmenteesi luonti epäonnistui, ehkä PGP-salasanasi oli väärin! Options - Asetukset + Asetukset PGP Key Length - + PGP-avaimen pituus <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Laita vahva salasana tähän. Tämä salasana suojelee sinun yksityistä solmuavainta!</p></body></html> <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + <html><head/><body><p>Ole hyvä ja liikuta hiirtäsi ympäriinsä, jolloin autat keräämään satunnaisuutta mahdollisimman paljon. Vähintään 20% tarvitaan solmuavaimiesi luontiin.</p></body></html> Standard node - + Normaali solmu TOR/I2P Hidden node - + TOR/I2P piilotettu solmu <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + <html><head/><body><p>Sinun solmunimesi määrittää Retroshare-instanssin, joka</p><p>tulee toimimaan tässä tietokoneessa</p></body></html> Use existing profile - + Käytä olemassaolevaa profiilia Node name - + Solmun nimi <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + <html><head/><body><p>Profiilin nimi yksilöi sinut läpi verkoston.</p><p>Ystäväsi käyttävät sitä hyväksyäkseen yhteydet sinulta.</p><p>Voit luoda monia Retroshare-solmuja</p><p>samalla profiililla eri tietokoneille.</p><p><br/></p></body></html> Export this profle - + Vie tämä profiili <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Tämän pitäisi olla Tor Onion-osoite muotoa: xa76giaf6ifda7ri63i263.onion <br/>tai I2P-osoite muodossa: [52 merkkiä].b32.i2p </p><p>Saadaksesi sellaisen määritä joko Tor tai I2P luomaan uuden piilotetun palvelu / palvelin-tunnelin. </p><p>Voit myös jättää tämän tyhjäksi nyt, mutta solmusi toimii ainoastaan, jos olet oikein määrittänyt Tor/I2P-palvelu osoitteen Asetukset-&gt;Verkko-&gt;Piilotetun palvelun asetusnäkymässä.</p></body></html> <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + <html><head/><body><p>Henkilöllisyyksiä käytetään, kun kirjoitat keskusteluhuoneisiin, foorumeille ja kanavakommentteihin. </p><p>Ne myös vastaanottavat/lähettävät sähköpostia Retroshare-verkossa. Voit luoda</p><p>allekirjoitetun henkilöllisyyden nyt, tai tehdä sen myöhemmin, kun tarvitset sitä.</p></body></html> Go! - + Mene! TextLabel - + Tekstiselite Advanced options - + Lisäasetukset hidden address - + piilotettu osoite Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + Profiilisi on kytketty PGP-avainpariin. Retroshare sivuuttaa DSA-avaimet. <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>Tämä on sinun yhteysportti.</p><p>Minkä tahansa arvon 1024 ja 65535 </p><p>väliltä pitäisi olla ok. Voit muuttaa sen myöhemmin.</p></body></html> Click to create your node and/or profile - + Napsauta luodaksesi solmun ja/tai profiilin Export profile - + Vie profiili RetroShare profile files (*.asc) - + Retroshare profiilitiedostot (*.asc) Profile saved - + Profiili tallennettu @@ -6610,131 +6573,135 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profiilisi tallennus onnistui +Se on salattu + +Voit kopioida sen nyt toiselle tietokoneelle +ja käyttää tuo-painiketta sen lataamiseen Profile not saved - + Profiilia ei tallennettu Your profile was not saved. An error occurred. - + Profiiliasi ei tallennettu. Virhe tapahtui. Import profile - + Tuo profiili Create new profile and new Retroshare node - + Luo uusi profiili ja uusi Retroshare-solmu Create new Retroshare node - + Luo uusi Retroshare-solmu Tor/I2P address - + Tor/I2P-osoite Username - + Käyttäjänimi Chat name - + Keskustelunimi Password again - + Salasana uudestaan <p>Node creation is disabled until all fields correctly set.</p> - + <p>Solmun luonti on kytketty pois päältä kunnes kaikki kentät ovat asetettu oikein.</p> <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + <p>Solmua ei luoda ennen kuin tarpeeksi satunnaisuutta on kerätty. Ole hyvä ja liikuta hiirtäsi ympäriinsä kunnes saavutat vähintään 20%.</p> I2P instance address with BOB enabled - + I2P-instanssiosoite, jossa BOB on kytketty päälle I2P instance address - + I2P-instanssiosoite hidden service address - + piilotetun palvelun osoite RetroShare profile files (*.asc);;All files (*) - + Retroshare profiilitiedostot (*.asc);;Kaikki tiedostot (*) Profile not loaded - + Profiili ei latautunut Your profile was not loaded properly: - + Profiilisi ei latautunut kunnolla: New profile imported - + Uusi profiili tuotu Your profile was imported successfully: - + Profiilisi tuotiin onnistuneesti: The GXS nickname is too short. Please input at least %1 characters. - + GXS-nimimerkki on liian lyhyt. Ole hyvä ja kirjoita ainakin %1 merkkiä. The GXS nickname is too long. Please reduce the length to %1 characters. - + GXS-nimimerkki on liian pitkä. Ole hyvä ja lyhennä pituutta %1 merkkiin. PGP key pair generation failure - + PGP-avainparin luonti epäonnistui Profile generation failure - + Profiilin luonti epäonnistui Missing PGP certificate - + Puuttuva PGP-varmenne @@ -6747,7 +6714,7 @@ and use the import button to load it Start RetroShare when my system starts - Käynnistä RetroShare yhtäaikaa järjestelmän kanssa + Käynnistä Retroshare yhtäaikaa järjestelmän kanssa @@ -6777,7 +6744,7 @@ and use the import button to load it Do not show the Quit RetroShare MessageBox - Älä näytä viestilaatikkoa RetroSharea suljettaessa + Älä näytä viestilaatikkoa Retrosharea suljettaessa @@ -6787,7 +6754,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + Rekisteröi retroshare:// URL-protokollaksi @@ -6797,22 +6764,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Kun rastitettu tämä instanssi vastaanottaa uudet parametrit (kuten RsLink tai RsFile) ja välttää uuden luomisen. Use Local Server to get new arguments. - + Käytä paikallista palvelinta uusien argumenttien saamiseksi. <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + <html><head/><body><p>Asenna Retroshare paketinhallintaohjelmalla saadaksesi</p><p>/usr/share/applications/retroshare.desktop</p></body></html> !!!The RetroShare's desktop file is missing or wrong!!! - + !!!Retrosharen työpöytä-tiedosto on kateissa tai väärä!!! @@ -6832,22 +6799,22 @@ and use the import button to load it You have sufficient rights. - + Sinulla on riittävät oikeudet. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + Sinulla ei ole riittäviä oikeuksia. Suorita Retroshare järjestelmänvalvojana muuttaaksesi tätä asetusta. For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Turvallisuuden vuoksi automaattisen kirjautumisen käyttöä ei suositella, mutta voit sallia sen omalla vastuullasi! Your RetroShare build has auto-login disabled. - + Retrosharesi automaattinen kirjautuminen on kytketty pois päältä. @@ -6895,7 +6862,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6906,7 +6873,7 @@ 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;">RetroShare ei ole mitään ilman ystäviä. Paina nappia aloittaaksesi prosessin.</span></p> +<p style=" 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 ei ole mitään ilman ystäviä. Paina nappia aloittaaksesi prosessin.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> <p style=" 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ähetä ystävillesi kutsu ja &quot;varmennetunnisteesi&quot; sähköpostilla.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> @@ -6916,7 +6883,7 @@ p, li { white-space: pre-wrap; } Add Your Friends to RetroShare - Lisää ystäviäsi RetroShareen + Lisää ystäviäsi Retroshareen @@ -6928,7 +6895,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:'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> @@ -6940,31 +6907,57 @@ 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 ystävienne kanssa 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> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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;"> +<p style=" 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> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6977,7 +6970,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-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;">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-size:12pt;"></p> +<p style=" 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) 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-size:12pt;"></p> +<p style=" 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) 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-size:12pt;"></p> +<p style=" 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) 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-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-size:12pt;"></p> +<p style=" 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) 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-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Nauti Retrosharetuksesta</span></p></body></html> @@ -6989,11 +6997,17 @@ 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: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 Friends' &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äviesi &quot;varmennetunnisteet&quot; ikkunaan ja lisää heidät ystäviksesi.</span></p></body></html> @@ -7088,7 +7102,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + Sillä on monia ominaisuuksia, mukaan lukien keskustelu, viestit, @@ -7101,62 +7115,62 @@ p, li { white-space: pre-wrap; } GroupBox - + Ryhmälaatikko ID - Tunniste + Tunniste Identity Name - + Henkilöllisyyden nimi Destinaton - + Kohde Data status - + Datan tila Tunnel status - + Tunnelin tila Stored data size - + Tallennetun datan koko Receive time (secs ago) - + Vastaanottoaika (sekunteja sitten) Sending time (secs ago) - + Lähetysaika (sekunteja sitten) Data hash - + Data tiiviste Branching factor - + Haarautumiskerroin Details - Tiedot + Tiedot @@ -7166,12 +7180,12 @@ p, li { white-space: pre-wrap; } Pending packets - + Odottavia paketteja Unknown - Tuntematon + Tuntematon @@ -7189,12 +7203,12 @@ p, li { white-space: pre-wrap; } [Unknown identity] - + [Tuntematon henkilöllisyys] : Service ID = - + : Palvelun tunniste = @@ -7210,7 +7224,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + [Tuntematon] @@ -7246,72 +7260,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Hakemistosisältö on näkyvissä ystäväsolmuille (katso luettelo oikealla) Directory content is NOT visible to friend nodes - + Hakemistosisältö EI ole näkyvissä ystäväsolmuille Directory can be searched anonymously - + Hakemisto voidaan etsiä nimettömänä Directory cannot be searched anonymously - + Hakemistoa ei voida etsiä nimettömänä Files can be accessed using anonymous tunnels - + Tiedostoja voidaan selata käyttäen nimettömiä tunneleita Files can be accessed using anonymous & end-to-end encrypted tunnels - + Tiedostoja voidaan selata käyttäen nimettömiä & päästä-päähän salattuja tunneleita Files cannot be downloaded anonymously - + Tiedostoja ei voi ladata nimettömänä All friend nodes can see this directory - + Kaikki ystäväsolmut voivat nähdä tämän hakemiston Only visible to friend nodes in groups: %1 - + Näkyy vain ystäväsolmuille ryhmissä: %1 Not visible to friend nodes - + Ei näkyvissä ystäväsolmuille Files can be downloaded (but not searched) anonymously - + Tiedostoja voidaan ladata (muttei etsiä) nimettömänä Files can be downloaded and searched anonymously - + Tiedostoja voidaan ladata ja etsiä nimettömänä Files can be searched (but not downloaded) anonymously - + Tiedostoja voidaan etsiä ( muttei ladata ) nimettömänä No one can anonymously access/search these files. - + Kukaan ei voi selata/etsiä näitä tiedostoja nimettömänä. @@ -7324,7 +7338,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + Piilota välilehtipalkki yhdellä välilehdellä @@ -7342,12 +7356,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + Jaa kanava julkaisuoikeuksia You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Voit sallia ystäviesi julkaista sinun kanavallasi, tai lähettää julkaisuoikeudet toiseen sinun Retroshare-instanssiin. Huomautus: tällä hetkellä ei ole mahdollista kumota kanava julkaisuoikeuksia. @@ -7357,22 +7371,22 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - + Jaa foorumi ylläpitooikeuksia 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. - + Voit antaa ystäviesi tietää foorumistasi jakamalla sen heidän kanssaan. Valitse ystävät, joiden kanssa haluat jakaa foorumin. Share topic admin permissions - + Jaa keskustelunaihe ylläpitooikeuksia 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. - + Voit sallia ystäviesi muokata aihetta. Valitse heidät alla olevasta luettelosta. Huomautus: Lähetettyjen ylläpito-oikeuksia ei voi kumota. @@ -7400,12 +7414,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Laskeva järjestys Sort Ascending Order - + Nouseva järjestys @@ -7425,33 +7439,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Järjestä viestien määrän mukaan Sort by Unread - + Järjestä lukemattomien mukaan You are admin (modify names and description using Edit menu) - + Olet ylläpitäjä (muokkaa nimiä ja kuvaksia käyttäen Muokkaa-valikkoa) You have been granted as publisher (you can post here!) - + Sinulle on myönnetty julkaisuoikeudet (voit lähettää viestin tänne!) Last Post - Viimeisin viesti + Viimeisin viesti Never - Ei koskaan + Ei koskaan @@ -7461,7 +7475,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + Tilaa ladataksesi ja lukeaksesi viestejä @@ -7588,7 +7602,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Kanavat</h1> <p>Kanavat sallivat sinun lähettää dataa (esim. elokuvia, musiikkia) , jotka leviävät verkostossa.</p> <p>Voit nähdä mitä kanavia ystäväsi tilaavat, ja automaattisesti edelleenlähettää tilatut kanavat ystävillesi. Tämä edistää verkoston hyviä kanavia.</p> <p>Ainoastaan kanavan luoja pystyy lähettämään kyseiselle kanavalle. Muut vertaiset verkostossa pystyvät vain lukemaan sitä, ellei kanava ole yksityinen. Kaikesta huolimatta voit jakaa lähetys- tai luku-oikeuksia ystäviesi Retroshare-solmuille.</p> <p>Kanavista voidaan tehdä nimettömiä, tai niihin voidaan liittää Retroshare-henkilöllisyys, että lukijat voivat yhteyden sinuun tarvittaessa. Salli "Salli kommentit", jos haluat käyttäjien kommentoivan viestejäsi.</p> <p>Kanavan viestit säilyvät %1 päivää, and pidetään ajan tasalla %2 päivän ajan, ellet sinä muuta tätä.</p> @@ -7608,7 +7622,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + Valitse kanavan lataushakemisto @@ -7618,18 +7632,18 @@ p, li { white-space: pre-wrap; } Set download directory - + Aseta lataushakemisto [Default directory] - + [Oletushakemisto] Specify... - Määritä... + Määritä... @@ -7652,7 +7666,7 @@ p, li { white-space: pre-wrap; } Open folder - + Avaa kansio @@ -7672,17 +7686,17 @@ p, li { white-space: pre-wrap; } Checking - + Tarkistetaan Are you sure that you want to cancel and delete the file? - + Oletko varma, että haluat peruuttaa ja poistaa tiedoston? Can't open folder - + Kansiota ei voida avata @@ -7710,7 +7724,7 @@ p, li { white-space: pre-wrap; } Published - + Julkaistu @@ -7800,12 +7814,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Uusi kommentti: Comment Value - + Kommentin arvo @@ -7832,12 +7846,12 @@ p, li { white-space: pre-wrap; } Edit - Muokkaa + Muokkaa Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki @@ -7914,7 +7928,7 @@ p, li { white-space: pre-wrap; } Comments - + Kommentit @@ -7943,7 +7957,7 @@ p, li { white-space: pre-wrap; } Add new post - + Lisää uusi kirjoitus @@ -7993,32 +8007,32 @@ p, li { white-space: pre-wrap; } Never - Ei koskaan + Ei koskaan Public - Julkinen + Julkinen Restricted to members of circle " - + Rajoitettu piirin jäseniin " Restricted to members of circle - + Rajoitettu piirin jäseniin Your eyes only - + Vain silmillesi You and your friend nodes - + Sinä ja ystäväsolmusi @@ -8033,33 +8047,33 @@ p, li { white-space: pre-wrap; } Show feeds - + Näytä syötteet Show files - + Näytä tiedostot Administrator: - + Ylläpitäjä: Last Post: - + Viimeisin viesti: unknown - tuntematon + tuntematon Distribution: - + Jakelu: @@ -8074,7 +8088,7 @@ p, li { white-space: pre-wrap; } Subscribers - + Tilaajat @@ -8084,7 +8098,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + Viestit (naapurisolmuissa): @@ -8100,48 +8114,48 @@ p, li { white-space: pre-wrap; } Details - Tiedot + Tiedot Remove Item - Poista kohde + Poista kohde for identity - + henkilöllisyydelle You received a membership request for circle: - + Olet vastaanottanut jäsenyyspyydön piiriin: Grant membership request - + Myönnä jäsenyyspyyntö Revoke membership request - + Kumoa jäsenyyspyyntö You received an invitation for circle: - + Olet vastaanottanut kutsun piiriin: Accept invitation - + Hyväksy kutsu Received event from unknown Circle: - + Vastaanotettu tapahtuma tuntemattomasta piiristä: @@ -8235,7 +8249,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + Kopioi kommentti @@ -8260,7 +8274,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8395,7 +8409,7 @@ kuin voit kommentoida In Reply to: - + Vastauksena: @@ -8405,7 +8419,7 @@ kuin voit kommentoida Forum Feed - + Foorumisyöte @@ -8438,7 +8452,7 @@ kuin voit kommentoida New Thread - Uusi viestiketju + Uusi viestiketju @@ -8472,7 +8486,7 @@ kuin voit kommentoida Save image - + Tallenna kuva @@ -8533,7 +8547,7 @@ 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> - + <p>Foorumin tilaaminen kerää kaikki saatavilla olevat viestit tilaajaystäviltäsi, ja tekee foorumista näkyvän kaikille muille ystävillesi.</p><p>Myöhemmin voit peruuttaa tilauksen foorumin kontekstivalikosta vasemmalla.</p> @@ -8583,7 +8597,7 @@ kuin voit kommentoida Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki @@ -8598,54 +8612,54 @@ kuin voit kommentoida [Banned] - + [Pannassa] [unknown] - + [tuntematon] Public - Julkinen + Julkinen Restricted to members of circle " - + Rajoitettu piirin jäseniin " Restricted to members of circle - + Rajoitettu piirin jäseniin Only friends nodes in group - + Vain ryhmässä olevat ystäväsolmut Your eyes only - + Vain silmillesi Distribution - + Anti-spam - + Roskapostin esto [ ... Redacted message ... ] - + [ ... Muokattu viesti ... ] @@ -8670,22 +8684,22 @@ kuin voit kommentoida <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + <p><font color="#ff0000"><b>Tämän viestin kirjoittaja (tunnisteella %1) on pannassa.</b> <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> - + <UL><li><b><font color="#ff0000">Viestejä tältä kirjoittajalta ei lähetetä eteenpäin. </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">Viestit tältä kirjoittajalta korvataan tällä tekstillä. </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">Voit pakottaa näkyvyyden ja viestien eteenpäin lähetyksen asettamalla erilaisen mielipiteen sille Tunnisteelle Ihmiset-välilehdessä.</font></b></p> @@ -8698,7 +8712,7 @@ kuin voit kommentoida RetroShare - RetroShare + Retroshare @@ -8728,22 +8742,22 @@ kuin voit kommentoida New thread - + Uusi viestiketju Read status - + Lue tilaviesti Edit - Muokkaa + Muokkaa Reply to author with private message - + Vastaa kirjoittajalle yksityisellä viestillä @@ -8754,7 +8768,7 @@ kuin voit kommentoida This will block/hide messages from this person, and notify friend nodes. - + Tämä estää/piilottaa viestit tältä henkilöltä ja huomauttaa ystäväsolmuja. @@ -8764,12 +8778,12 @@ kuin voit kommentoida Doing this, you trust your friends to decide to forward this message or not. - + Tämän tehdessäsi luotat ystäviisi lähetetäänkö tämä viesti eteenpäin vai ei. Give negative opinion - + Anna kielteinen mielipide @@ -8779,76 +8793,79 @@ kuin voit kommentoida Author's reputation - + Kirjoittajan maine Anonymous/unknown posts forwarded if reputation is positive - + Nimettömät/tuntemattomat viestit lähetetään edelleen, jos maine on myönteinen Anonymous posts forwarded if reputation is positive - + Nimettömät viestit lähetetään eteenpäin, jos maine on myönteinen Last post - + Viimeisin viesti Never - Ei koskaan + Ei koskaan Synchronization - + Ajantasaistus Storage - + Information for this identity is currently missing. - + Tämän henkilöllisyyden tiedot ovat tällä hetkellä kateissa. You have banned this ID. The message will not be displayed nor forwarded to your friends. - + Olet laittanut tämän tunnisteen pannaan. Viestiä ei +näytetä eikä lähetä eteenpäin ystävillesi. You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Et ole asettanut mielipidettä tästä henkilöstä, + ja ystäväsi eivät äänestä myönteisesti: Roskapostin säätely +estää viestin lähettämisen eteenpäin ystävillesi. Message will be forwarded to your friends. - + Viesti tullaan välittämään ystävillesi. (Latest) - + (Viimeisin) (Old) - + (Vanha) You cant act on the author to a non-existant Message - + Et voi ottaa toimia olemattoman viestin kirjoittajan suhteen @@ -8873,17 +8890,17 @@ prevents the message to be forwarded to your friends. Forum name - + Foorumin nimi Subscribers - + Tilaajat Posts (at neighbor nodes) - + Viestit (naapurisolmuissa) @@ -8893,7 +8910,7 @@ prevents the message to be forwarded to your friends. By - + käyttäjältä @@ -8909,7 +8926,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Foorumit</h1> <p>Retrosharen foorumit toimivat hajautetusti</p> <p>Näet foorumit, jotka ystäväsi ovat tilanneet ja vastaavasti välität tilaamasi foorumit ystävillesi. Tällä tavoin kiinnostavien foorumeiden näkyvyys lisääntyy automaattisesti.</p> <p>Foorumiviestit pidetään %1 päivän ajan ja ajantasaistetaan viimeisiltä %2 päivältä ellet määritä sitä toisin.</p> @@ -9013,10 +9030,6 @@ prevents the message to be forwarded to your friends. Public Julkinen - - Only For Your Friends - Vain ystävillesi - Publish Signatures @@ -9080,29 +9093,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Roskaposti-suojaus Comments: - Kommentit: + Kommentit: TextLabel - + Tekstiselite Distribution: - + Jakelu: Anti Spam: - + Roskapostin esto: @@ -9113,45 +9126,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Rajoitettu piiriin: Limited to your friends - + Rajattu ystäviisi Allowed - + Sallittu Disallowed - + Estetty Message tracking - + Viestiseuranta PGP signature required - + PGP-allekirjoitus vaaditaan Never - Ei koskaan + Ei koskaan Only friends nodes in group - + Vain ryhmässä olevat ystäväsolmut @@ -9161,7 +9174,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + PGP-allekirjoitus tunnetulta tunnisteelta vaaditaan @@ -9182,17 +9195,17 @@ prevents the message to be forwarded to your friends. Will be used to send feedback - + Käytetään palautteen lähettämiseen Owner: - + Omistaja: Set a descriptive description here - + Aseta kuvaava kuvaus tähän @@ -9212,52 +9225,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Viestit leviävät ystäväsolmujen ulkopuolelle, niin kauan kun ihmiset tilaavat kanavan/foorumin/lähetetyn, jolle luot sisältöä.</p></body></html> <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + <html><head/><body><p>Viestit leviävät Retroshare-solmuihin, jotka ylläpitävät jotakin piirin jäseneksi merkityistä henkilöllisyyksistä ja jotka myös tilaavat median. Ainoastaan nämä solmut voivat nähdä, että tämä foorumi/kanava/lähetetyt-media on olemassa. </p></body></html> Restricted to Circle - + Rajoitettu piiriin <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + <html><head/><body><p>Viestit tullaan ainoastaan jakamaan valitulle osajoukolle ystäväsolmuja. Ne eivät tule ohjaamaan viestejä toisilleen, mutta käyttävät vain sinun omaa solmua keskusreitittimenä niiden jakamiseen.</p></body></html> Restricted node group - + Rajoitettu solmuryhmään Posts permissions: - + Viestien käyttöoikeudet: <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Kaikki sallittu Defavor unsigned IDs - + Haittaa allekirjoittamattomia tunnisteita Defavor unsigned IDs and IDs from unknown nodes - + Haittaa allekirjoittamattomia tunnisteita ja tunnisteita tuntemattomista solmuista @@ -9267,7 +9280,7 @@ prevents the message to be forwarded to your friends. Posts - + Viestejä @@ -9277,7 +9290,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + GxsTunnisteselite @@ -9330,64 +9343,64 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + Ajantasaista viestit ajalta... 5 days - + 5 päivää 2 weeks - + 2 viikkoa 1 month - + 1 kuukausi 3 months - + 3 kuukautta 6 months - + 6 kuukautta 1 year - + 1 vuosi Indefinitly - + Toistaiseksi Store posts for at most... - + Tallenna viestit enimmäkseen... Share publish permissions - + Jaa julkaisuoikeudet Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki @@ -9440,43 +9453,43 @@ prevents the message to be forwarded to your friends. [Banned] - + [Pannassa] Authentication - + Varmennus unknown Key - + tuntematon avain anonymous - + nimetön Identity&nbsp;name - + Henkilöllisyyden&nbsp;nimi Identity&nbsp;Id - + Henkilöllisyystunniste Signed&nbsp;by - + Allekirjoittama [Unknown] - + [Tuntematon] @@ -9497,107 +9510,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Reitittimen tilastot + Reitittimen tilastot GroupBox - + Ryhmälaatikko ID - Tunniste + Tunniste Destination - Kohde + Kohde Data status - + Datan tila Data size - + Datan koko Data hash - + Data tiiviste Sending time (secs ago) - + Lähetysaika (sekunteja sitten) Group ID - + Ryhmä tunniste Gxs Transport Groups: - + Gxs liikenneryhmät: Group ID / Author - + Ryhmätunniste / Kirjoittaja Number of messages / Publish TS - + Viestien määrä / Julkaise liikennetilastot Local size of data - + Datan paikallinen koko Subscribed - Tilattu + Tilattu Popularity - Suosio + Suosio Details - Tiedot + Tiedot Unknown Peer - Tuntematon vertainen + Tuntematon vertainen Pending data items - + Odottavia datakohteita Unknown - Tuntematon + Tuntematon Yes - Kyllä + Kyllä No - Ei + Ei @@ -9605,42 +9618,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Varmennetut tunnelit: Tunnel ID: %1 - + Tunnelitunniste: %1 from: %1 - + to: %1 - + status: %1 - + tila: %1 total sent: %1 bytes - + lähetetty yhteensä: %1 tavua total recv: %1 bytes - + vastaanotettu yhteensä: %1 tavua Unknown Peer - Tuntematon vertainen + Tuntematon vertainen @@ -9668,7 +9681,7 @@ prevents the message to be forwarded to your friends. RetroShare Help - RetroSharen ohje + Retrosharen ohje @@ -9827,7 +9840,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + Virhe ladattaessa ohjeen sisältöä: @@ -9842,21 +9855,37 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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-family:'MS Shell Dlg 2'; font-weight:600;">Retroshare on avoimen lähdekoodin alustariippumaton, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">yksityinen ja turvallinen hajautettu viestintäalusta. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Se antaa sinun jakaa turvallisesti ystäväsi, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">käyttäen luottamuksen verkkoa todentaakseen vertaiset ja OpenSSL kaiken viestinnän salaukseen. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Hyödyllisiä ulkoisia linkkejä lisätietoja varten:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'MS Shell Dlg 2'; 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 verkkosivu</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retrosharen foorumi</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare projekti-sivu</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare työryhmän blogi</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare kehittäjien Twitter</span></a></li></ul></body></html> @@ -9878,18 +9907,31 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +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: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; font-weight:600;">RetroShare Translations:</span></p> +<p 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; font-weight:600;">Retroshare käännökset:</span></p> <p style="-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;"><br /></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=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p 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; font-weight:600;">Retroshare verkkosivuston kääntäjät:</span></p> <p style="-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; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</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:8pt; font-weight:600;">Ruotsi: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Saksa: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Puola: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> @@ -9907,12 +9949,12 @@ 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:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Tietoja RetroSharesta</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:9pt; font-weight:600;">Tietoja Retrosharesta</span></p></body></html> Libraries - + Kirjastot @@ -9925,12 +9967,12 @@ p, li { white-space: pre-wrap; } 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 voi avata valitsemasi linkin verkkoselaimessasi. Jos selaimesi ei ole säädetty käyttämään Tor-verkkoa, linkin avaaminen ei tapahdu nimettömänä. + Retroshare voi avata valitsemasi linkin verkkoselaimessasi. Jos selaimesi ei ole säädetty käyttämään Tor-verkkoa, linkin avaaminen ei tapahdu nimettömänä. Do you want Retroshare to open the link in your Web browser? - Haluatko, että RetroShare avaa linkin verkkoselaimessasi? + Haluatko, että Retroshare avaa linkin verkkoselaimessasi? @@ -9940,12 +9982,12 @@ p, li { white-space: pre-wrap; } 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 ei onnistunut avaamaan valitsemaasi linkkiä verkkoselaimessasi. Voit silti kopioda linkin osoitteen ja liittää sen selaimeesi. + Retroshare ei onnistunut avaamaan valitsemaasi linkkiä verkkoselaimessasi. Voit silti kopioda linkin osoitteen ja liittää sen selaimeesi. Error opening help file: - + Virhe avattaessa ohjetiedostoa: @@ -9958,109 +10000,111 @@ p, li { white-space: pre-wrap; } Did you receive a certificate from a friend? - + Saitko varmenteen ystävältäsi? Add friends certificate - + Lisää ystäväsi varmenne Add certificate file - + Lisää varmenne-tiedosto Share your RetroShare Key - + Jaa Retroshare-avaimesi ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + Teksti alapuolella on Retroshare-varmenteesi. Lähetä se ystävillesi Open Source cross-platform, private and secure decentralized communication platform. - + Avoimen lähdekoodin alustariippumaton, +yksityinen ja turvallinen hajautettu viestintäalusta. + Launch startup wizard - + Käynnistä ohjattu aloitus Do you need help with RetroShare? - + Tarvitsetko apua Retrosharen kanssa? Open Web Help - + Avaa verkkotuki (englanniksi) Copy your Cert to Clipboard - Kopioi varmenteesi leikepöydälle + Kopioi varmenteesi leikepöydälle Save your Cert into a File - Tallenna varmenteesi tiedostoon + Tallenna varmenteesi tiedostoon Send via Email - + Lähetä sähköpostitse Invite via WebMail - + Kutsu sähköpostin kautta Recommend friends to each others - + Suosittele ystäviä toisilleen <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Tervetuloa Retroshareen!</h1> <p>Sinun pitää <b>tehdä ystäviä</b>! Kun olet luonut ystäväverkoston tai liittynyt olemassa olevaan verkostoon voit vaihtaa tiedostoja, keskustella, jutustella foorumeilla, jne. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>Näin tehdäksesi, kopioi varmenteesi tällä sivulla ja lähetä se ystävillesi, ja lisää ystäviesi varmenteet.</p> <p>Toinen vaihtoehto on etsiä internetistä "Retroshare chat servers" (itsenäisesti hallinnoituja). Nämä palvelimet antavat sinun vaihtaa varmenteita palvelin Retroshare-solmun kanssa, jonka kautta voit nimettömästi tavata muita ihmisiä.</p> RetroShare Invite - RetroShare-kutsu + Retroshare-kutsu Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Varmenteesi on kopioitu leikepöydälle, liitä ja lähetä se ystävällesi sähköpostilla tai muulla tavoin + Varmenteesi on kopioitu leikepöydälle, liitä ja lähetä se ystävällesi sähköpostilla tai muulla tavoin Save as... - Tallenna nimellä... + Tallenna nimellä... RetroShare Certificate (*.rsc );;All Files (*) - RetroSharen varmenne (*.rsc );;Kaikki tiedostot (*) + Retroshare varmenne (*.rsc );;Kaikki tiedostot (*) Home - Koti + Koti @@ -10069,7 +10113,7 @@ private and secure decentralized communication platform. Person Details - + Henkilön tiedot @@ -10079,22 +10123,27 @@ private and secure decentralized communication platform. Friends votes: - + Ystävien äänet: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </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: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-family:'Sans'; font-size:9pt;">Sinun oma mielipiteesi henkilöllisyydestä määrittää kyseisen henkilöllisyyden näkyvyyden itsellesi ja ystäväsolmuille. Sinun oma mielipiteesi jaetaan ystäviesi kesken ja käytetään maineen pisteytyksen laskemiseen: Jos mielipiteesi henkilöllisyydestä on neutraali, maineen pisteytys on keskiarvo ystäviesi mielipiteistä. Jos ei, sinun oma mielipiteesi antaa pisteytyksen.</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:9pt;">Kokonaispisteytystä käytetään keskusteluauloissa, foorumeilla ja kanavilla toimien määrittämiseen kullekin tietylle henkilöllisyydelle. Kun kokonaispisteytys on alle -0.6, henkilöllisyys asetetaan pannaan, joka estää tämän henkilöllisyyden kirjoittamien kaikkien viestien ja foorumien/kanavien eteenpäin välityksen, kumpaankin suuntaan. Jotkin foorumit omaavat myös erikois roskapostinestoilmaisimia, jotka vaativat korkean mainetason, tehden niistä herkempiä huonoille mielipiteille. Pannassa olevat henkilöllisyydet vähitellen menettävät aktiivisuuden ja lopulta katoavat (30 päivän jälkeen). </span></p></body></html> Owner node ID : - + Omistajasolmun tunniste: @@ -10104,101 +10153,101 @@ p, li { white-space: pre-wrap; } Owner node name : - + Omistajasolmun nimi: Identity name : - + Henkilöllisyyden nimi: Identity ID : - + Henkilöllisyystunniste: Last used: - + Viimeksi käytetty: Ban-option: - + Pannaus-vaihtoehto: Auto-Ban all identities signed by the same node - + Automaattisesti pannaa kaikki henkilöllisyydet, jotka ovat saman solmun allekirjoittamia Your Avatar Click here to change your avatar - + Sinun avatar Send Invite - + Lähetä kutsu Positive votes - + Myönteisiä ääniä 0 - 0 + 0 Negative votes - + Kielteisiä ääniä <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>Naapurisolmujen mielipiteiden keskiarvo tästä henkilöllisyydestä. Kielteinen on huono,</p><p>myönteinen on hyvä. Nolla on neutraali.</p></body></html> Your opinion: - + Sinun mielipiteesi: Negative - + Kielteinen Neutral - + Neutraali Positive - + Myönteinen <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>Kokonaismainepisteytys, mukaan laskien sinun sekä ystäviesi.</p><p>Kielteinen on huono, myönteinen on hyvä. Nolla on neutraali. Jos pisteytys on liian alhainen,</p><p>henkilöllisyys merkitään huonoksi, ja tullaan suodattamaan pois foorumeilta, keskusteluauloista,</p><p>kanavilta, jne.</p></body></html> Overall: - + Yhteensä: [unverified] - + [vahvistamaton] @@ -10213,97 +10262,97 @@ p, li { white-space: pre-wrap; } Identity owned by you, linked to your Retroshare node - + Sinun omistama henkilöllisyys linkitettynä Retroshare-solmuusi Anonymous identity, owned by you - + Nimetön henkilöllisyys, sinun omistama Owned by a friend Retroshare node - + Ystävän Retroshare-solmun omistama Owned by 2-hops Retroshare node - + 2-hypyn Retroshare-solmun omistama Owned by unknown Retroshare node - + Tuntemattoman Retroshare-solmun omistama Anonymous identity - + Nimetön henkilöllisyys +50 Known PGP - + +50 tiedettyä PGP:tä +10 UnKnown PGP - + +10 tuntematonta PGP:tä +5 Anon Id - + +5 nimetöntä tunnistetta positive - + myönteinen negative - + kielteinen No votes from friends - + Ei ääniä ystäviltä Negative (Banned by you) - + Kielteinen (Sinun pannaamasi) Positive (according to your friends) - + Myönteinen (ystäviesi mukaan) Negative (according to your friends) - + Kielteinen (ystäviesi mukaan) Hi,<br>I want to be friends with you on RetroShare.<br> - + Hei,<br>haluan olla ystäväsi Retrosharessa.<br> You have a friend invite - + Sinulle on ystäväkutsu Respond now: - + Vastaa nyt: Thanks, <br> - + Kiitos, <br> @@ -10337,101 +10386,101 @@ p, li { white-space: pre-wrap; } Create new circle - + Luo uusi piiri Persons - + Henkilöt Votes - + Ääniä Person - + Henkilö Close - Sulje + Sulje Ban-option: - + Pannaus-vaihtoehto: Auto-Ban all identities signed by the same node - + Automaattisesti pannaa kaikki henkilöllisyydet, jotka ovat saman solmun allekirjoittamia Friend votes: - + Ystävän äänet: Positive votes - + Myönteisiä ääniä 0 - 0 + 0 Negative votes - + Kielteisiä ääniä Usage statistics - + Käyttötilastot Circles - Piirit + Piirit Circle name - + Piirin nimi Membership - Jäsenyys + Jäsenyys Public Circles - Julkiset piirit + Julkiset piirit Personal Circles - Henkilökohtaiset piirit + Henkilökohtaiset piirit Edit identity - Muokkaa henkilöllisyyttä + Muokkaa henkilöllisyyttä Delete identity - + Poista henkilöllisyys @@ -10446,47 +10495,47 @@ p, li { white-space: pre-wrap; } Owner node ID : - + Omistajasolmun tunniste: Identity name : - + Henkilöllisyyden nimi: () - + () Identity ID - + Henkilöllisyystunniste Send message - + Lähetä viesti Identity info - + Henkilöllisyyden tiedot Identity ID : - + Henkilöllisyystunniste: Owner node name : - + Omistajasolmun nimi: Create new... - + Luo uusi... @@ -10496,57 +10545,65 @@ p, li { white-space: pre-wrap; } Send Invite - + Lähetä kutsu <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>Naapurisolmujen mielipiteiden keskiarvo tästä henkilöllisyydestä. Kielteinen on huono,</p><p>myönteinen on hyvä. Nolla on neutraali.</p></body></html> Your opinion: - + Sinun mielipiteesi: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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;">Sinun oma mielipiteesi henkilöllisyydestä määrittää kyseisen henkilöllisyyden näkyvyyden itsellesi ja ystäväsolmuille. Sinun oma mielipiteesi jaetaan ystäviesi kesken ja käytetään maineen pisteytyksen laskemiseen: Jos mielipiteesi henkilöllisyydestä on neutraali, maineen pisteytys lasketaan ystäviesi myönteisten ja kielteisten mielipiteiden erotuksesta. Jos ei, sinun oma mielipiteesi antaa pisteytyksen.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Kokonaispisteytystä käytetään keskusteluauloissa, foorumeilla ja kanavilla toimien määrittämiseen kullekin tietylle henkilöllisyydelle. Kun kokonaispisteytys on alle -1, henkilöllisyys asetetaan pannaan, joka estää tämän henkilöllisyyden kirjoittamien kaikkien viestien ja foorumien/kanavien eteenpäin välityksen, kumpaankin suuntaan. Jotkin foorumit omaavat myös erikois roskapostinestoilmaisimia, jotka vaativat ei-kielteisen maineen tason, tehden niistä herkempiä huonoille mielipiteille. Pannassa olevat henkilöllisyydet vähitellen menettävät toimeliaisuuden ja lopulta katoavat (5 päivän jälkeen).</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Sinä voit muuttaa kynnyksiä ja toimettomuuden aikaa henkilöllisyyksien poistamiseen asetuksista -&gt; Ihmiset. </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> Negative - + Kielteinen Neutral - + Neutraali Positive - + Myönteinen <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>Kokonaismainepisteytys, mukaan laskien sinun sekä ystäviesi.</p><p>Kielteinen on huono, myönteinen on hyvä. Nolla on neutraali. Jos pisteytys on liian alhainen,</p><p>henkilöllisyys merkitään huonoksi, ja tullaan suodattamaan pois foorumeilta, keskusteluauloista,</p><p>kanavilta, jne.</p></body></html> Overall: - + Yhteensä: @@ -10556,7 +10613,7 @@ p, li { white-space: pre-wrap; } ID - Tunniste + Tunniste @@ -10566,187 +10623,187 @@ p, li { white-space: pre-wrap; } This identity is owned by you - + Tämä henkilöllisyys on sinun omistamasi My own identities - + Minun henkilöllisyyteni My contacts - + Show Items - + Näytä kohteet Owned by myself - + Omistamani Linked to my node - + Linkitetty solmuuni Other circles - + Muut piirit Circles I belong to - + Piirit joihin kuulun Circle ID: - + Piiri tunniste: Visibility: - + Näkyvyys: Private (only visible to invited members) - + Yksityinen (näkyy ainoastaan kutsutuille jäsenille) Only visible to full members of circle - + Näkyy ainoastaan piirin täysjäsenille Public - Julkinen + Julkinen Your role: - + Sinun roolisi: Administrator (Can edit invite list, and request membership). - + Ylläpitäjä (Voi muokata kutsuluetteloa ja pyytää jäsenyyttä). User (Can only request membership). - + Käyttäjä (Voi ainostaan pyytää jäsenyyttä). Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + tilattu (Vastaanota/lähetä jäsenyyspyyntöjä toisilta ja kutsuluettelosta) unsubscribed (Only receive invite list). - + tilauksen peruuttaneet (Vastaanota ainoastaan kutsuluettelo). Your status: - + Sinun tilasi: Full member (you have access to data limited to this circle) - + Täysjäsen (sinulle on pääsy tälle piirille rajoitettuun dataan) Not a member (do not have access to data limited to this circle) - + Ei jäsen (ei ole pääsyä tälle piirille rajoitettuun dataan) Identity ID: - + Henkilöllisyystunniste: Status: - Tila: + Tila: Full member - + Täysjäsen Invited by admin - + Ylläpitäjän kutsuma Subscription request pending - + Tilauspyyntö odottaa unknown - tuntematon + tuntematon Invited - + Kutsuttu Subscription pending - + Tilaus odottaa Member - + Jäsen Edit Circle - Muokkaa piiriä + Muokkaa piiriä See details - + Katso tiedot Request subscription - + Pyydä tilaus Accept circle invitation - + Hyväksy piirikutsu Quit this circle - + Lopeta tämä piiri Cancel subscribe request - + Peruuta tilauspyyntö @@ -10754,294 +10811,297 @@ p, li { white-space: pre-wrap; } for identity - + henkilöllisyydelle Revoke this member - + Kumoa tämä jäsen Grant membership - + Myönnä jäsenyys -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + +Tällä henkilöllisyydellä on suojaamaton sormenjälki (Se on todennäköisesti aika vanha). +Sinun pitäisi hankkiutua siitä eroon ja käyttää uutta. +Näitä henkilöllisyyksien tuki lakkaa pian. [Unknown node] - + [Tuntematon solmu] Unverified signature from node - + Vahvistamaton allekirjoitus solmulta Unchecked signature - + Tarkistamaton allekirjoitus [unverified] - + [vahvistamaton] Identity owned by you, linked to your Retroshare node - + Sinun omistama henkilöllisyys linkitettynä Retroshare-solmuusi Identity owned by you, linked to your Retroshare node but not yet validated - + Sinun omistama henkilöllisyys linkitettynä Retroshare-solmuusi mutta ei vielä vahvistettu Anonymous identity, owned by you - + Nimetön henkilöllisyys, sinun omistama Anonymous identity - + Nimetön henkilöllisyys Message in chat room %1 - + Viesti keskusteluhuoneessa %1 information - + tietoa This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Tämä henkilöllisyyslinkki kopioitiin leikepöydältäsi. Liitä se sähköpostiin tai viestiin lähettääksesi henkilöllisyyden jollekin. Copy identity to clipboard - + Kopioi henkilöllisyys leikepöydälle Send invite? - + Lähetä kutsu? Do you really want send a invite with your Certificate? - + Haluatko todella lähettää kutsun varmenteellasi? Banned - + Pannassa <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + Tuntematon tunniste: positive - + positiviinen negative - + kielteinen No votes from friends - + Ei ääniä ystäviltä Negative (Banned by you) - + Kielteinen (Sinun pannaamasi) Positive (according to your friends) - + Myönteinen (ystäviesi mukaan) Negative (according to your friends) - + Kielteinen (ystäviesi mukaan) <b>[No record in current session]</b> - + <b>[Ei tallennusta nykyisessä istunnossa]</b> Channels - Kanavat + Kanavat Forums - + Foorumit Posted - Lähetetty + Lähetetty Chat - Keskustelu + Keskustelu Unknown - Tuntematon + Tuntematon [Unknown] - + [Tuntematon] Admin signature in service %1 - + Ylläpitäjän allekirjoitus palvelussa %1 Admin signature verification in service %1 - + Ylläpitäjän allekirjoituksen vahvistus palvelussa %1 Creation of author signature in service %1 - + Kirjoittajan allekirjoituksen luonti palvelussa %1 Message/vote/comment - + Viesti/ääni/kommentti %1 in %2 tab - + %1 %2 välilehdessä Distant message signature validation. - + Etäisen viestin allekirjoituksen vahvistaminen. Distant message signature creation. - + Etäisen viestin allekirjoituksen luominen. Signature validation in distant tunnel system. - + Allekirjoituksen vahvistaminen etäisessä tunnelijärjestelmässä. Signature in distant tunnel system. - + Allekirjoitus etäisessä tunnelijärjestelmässä. Update of identity data. - + Henkilöllisyys-datan päivitys. Generic signature validation. - + Yleinen allekirjoituksen vahvistaminen. Generic signature. - + Yleinen allekirjoitus. Generic encryption. - + Yleinen salaus. Generic decryption. - + Yleinen salauksen purku. Membership verification in circle %1. - + Jäsenyyden varmistus piirissä %1. Add to Contacts - + Remove from Contacts - + Set positive opinion - + Aseta myönteinen mielipide Set neutral opinion - + Aseta neutraali mielipide Set negative opinion - + Aseta kielteinen mielipide Distant chat cannot work - + Etäinen keskustelu ei toimi Error code - + Virhekoodi Hi,<br>I want to be friends with you on RetroShare.<br> - + Hei,<br>haluan olla ystäväsi Retrosharessa.<br> @@ -11055,92 +11115,92 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Sinun avatar Linked to neighbor nodes - + Linkitetty naapurisolmuihin Linked to distant nodes - + Linkitetty etäisiin solmuihin Linked to a friend Retroshare node - + Linkitetty ystävä Retroshare-solmuun Linked to a known Retroshare node - + Linkitetty tunnettuun Retroshare-solmuun Linked to unknown Retroshare node - + Linkitetty tuntemattomaan Retroshare-solmuun Chat with this person - + Keskustele henkilön kanssa Chat with this person as... - + Keskustelu henkilön kanssa... Distant chat refused with this person. - + Tämä henkilö torjui etäisen keskustelun Last used: - + Viimeksi käytetty: +50 Known PGP - + +50 tiedettyä PGP:tä +10 UnKnown PGP - + +10 tuntematonta PGP:tä +5 Anon Id - + +5 nimetöntä tunnistetta Do you really want to delete this identity? - + Haluatko todella poistaa tämän henkilöllisyyden? Owned by - + Omistama Node name: - + Solmun nimi: Node Id : - + Solmun tunniste : Really delete? - + Tuhotaanko? @@ -11252,7 +11312,7 @@ These identities will soon be not supported anymore. RM - + @@ -11263,32 +11323,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Sinun avatar Set Avatar - + Aseta Avatar Linked to your profile - + Linkitetty profiiliisi 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. - + Sinulla voi olla yksi tai useampi henkilöllisyys. Niitä käytetään usein kirjoitettaessa keskusteluhuoneisiin, foorumeille ja kanavakommentteihin. Ne toimivat kohteena etäiselle keskustelulle ja Retrosharen etäiselle postijärjestelmälle. The nickname is too short. Please input at least %1 characters. - + Nimimerkki on liian lyhyt. Syötä vähintään %1 merkkiä. The nickname is too long. Please reduce the length to %1 characters. - + Nimimerkki on liian pitkä. Lyhennä pituus %1 merkkiin. @@ -11306,7 +11366,7 @@ These identities will soon be not supported anymore. GXSId - + GXSTunniste @@ -11318,25 +11378,25 @@ These identities will soon be not supported anymore. GXS name: - + GXS nimi: PGP name: - + PGP-nimi: GXS id: - + GXS tunniste: PGP id: - + PGP-tunniste : @@ -11385,17 +11445,17 @@ These identities will soon be not supported anymore. Save image - + Tallenna kuva Cannot save the image, invalid filename - + Ei voi tallentaa kuvaa, virheellinen tiedostonnimi Not an image - + Ei ole kuva @@ -11424,21 +11484,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Suosittele viestissä vastaanottajalle... Share on channel... - + Jaa kanavalla... Share on forum... - - - - Recommend in a message to - Suosittele viestissä vastaanottajalle + Jaa foorumilla... @@ -11504,7 +11560,7 @@ These identities will soon be not supported anymore. RetroShare %1 a secure decentralized communication platform - RetroShare %1 turvallinen hajautettu kommunikaatioalusta + Retroshare %1 turvallinen hajautettu viestintäalusta @@ -11525,7 +11581,7 @@ These identities will soon be not supported anymore. Please make some free space and click Ok. MB). - RetroShare pysäyttää nyt turvallisesti kaiken tähän hakemistoon tulevan dataliikenteen. + Retroshare pysäyttää nyt turvallisesti kaiken tähän hakemistoon tulevan dataliikenteen. Ole hyvä ja vapauta tilaa ja paina Ok. @@ -11547,7 +11603,7 @@ These identities will soon be not supported anymore. Open Messenger - + Avaa pikaviestin @@ -11587,7 +11643,7 @@ These identities will soon be not supported anymore. RetroShare - RetroShare + Retroshare @@ -11622,7 +11678,7 @@ These identities will soon be not supported anymore. Do you really want to exit RetroShare ? - Haluatko todella poistua RetroSharesta? + Haluatko todella poistua Retrosharesta? @@ -11652,7 +11708,7 @@ These identities will soon be not supported anymore. It seems to be an old RetroShare link. Please use copy instead. - Tämä näyttäisi olevan vanha RetroShare-linkki. Käytä mielummin kopiointia. + Tämä näyttäisi olevan vanha Retroshare-linkki. Käytä mielummin kopiointia. @@ -11677,22 +11733,22 @@ These identities will soon be not supported anymore. Show web interface - + Näytä verkkokäyttöliittymä The disk space in your - + Levytila hakemistossa directory is running low (current limit is - + on käymässä vähiin (tämänhetkinen raja on Really quit ? - + Lopeta? @@ -11706,7 +11762,7 @@ These identities will soon be not supported anymore. Contacts - Kontaktit + Yhteystiedot @@ -11808,22 +11864,22 @@ These identities will soon be not supported anymore. Address list: - + Osoiteluettelo: Recommend this friend - + Suosittele tätä ystävää Set Text color - + Aseta tekstin väri Set Text background color - + Aseta tekstin taustaväri @@ -11863,7 +11919,7 @@ These identities will soon be not supported anymore. Toggle Contacts View - Kontaktinäkymän vaihto + Yhteystietonäkymän vaihto @@ -11923,17 +11979,17 @@ These identities will soon be not supported anymore. All addresses (mixed) - + Kaikki osoitteet (sekaisin) All people - + Kaikki ihmiset My contacts - + @@ -11953,12 +12009,12 @@ These identities will soon be not supported anymore. wants to be friends with you on RetroShare - haluaa olla ystäväsi RetroSharessa + haluaa olla ystäväsi Retrosharessa 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 - Hei %1,<br><br>%2 haluaa olla ystäväsi RetroSharessa.<br><br>Vastaa nyt:<br>%3<br><br>Kiittäen,<br>RetroShare-tiimi. + Hei %1,<br><br>%2 haluaa olla ystäväsi Retrosharessa.<br><br>Vastaa nyt:<br>%3<br><br>Kiittäen,<br>Retroshare-tiimi. @@ -11976,7 +12032,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Paste RetroShare Link - Liitä RetroShare-linkki + Liitä Retroshare-linkki @@ -12052,7 +12108,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? RetroShare - RetroShare + Retroshare @@ -12183,7 +12239,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Details - Tiedot + Tiedot @@ -12236,17 +12292,17 @@ Haluatko tallentaa viestin? Hi,<br>I want to be friends with you on RetroShare.<br> - + Hei,<br>haluan olla ystäväsi Retrosharessa.<br> You have a friend invite - + Sinulle on ystäväkutsu Respond now: - + Vastaa nyt: @@ -12261,73 +12317,73 @@ Haluatko tallentaa viestin? Friend Nodes - + Ystäväsolmut 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> - + Kiitos, <br> Distant identity: - + Etäinen henkilöllisyys: [Missing] - + [Puuttuva] Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Ole hyvä ja luo henkilöllisyys allekirjoittaaksesi etäiset viestit, tai poista etäiset vertaiset kohdeluttelosta. Node name & id: - + Solmun nimi & tunniste: @@ -12335,22 +12391,22 @@ Haluatko tallentaa viestin? Everyone - + Jokainen Contacts - Kontaktit + Kontaktit Nobody - + Ei kukaan Accept encrypted distant messages from - + Hyväksy salatut etäiset viestit @@ -12412,10 +12468,6 @@ Haluatko tallentaa viestin? Edit Tag Muokkaa merkkausta - - Message - Viesti - Distant messages: @@ -12429,7 +12481,7 @@ Haluatko tallentaa viestin? Mail - + Posti @@ -12493,7 +12545,7 @@ Haluatko tallentaa viestin? Send Invite - + Lähetä kutsu @@ -12543,12 +12595,12 @@ Haluatko tallentaa viestin? Send invite? - + Lähetä kutsu? Do you really want send a invite with your Certificate? - + Haluatko todella lähettää kutsun varmenteellasi? @@ -12579,12 +12631,12 @@ Haluatko tallentaa viestin? Hide the attachment pane - + Piilota liitteet-näkymä Show the attachment pane - + Näytä liitteet-näkymä @@ -13008,12 +13060,12 @@ Haluatko tallentaa viestin? <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;Viestit</h1> <p>Retrosharella on sen oma sisäinen sähköpostijärjestelmä. Voit lähettää/vastaanottaa sähköposteja yhdistetyiltä ystäväsolmuilta.</p> <p>On myös mahdollista lähettää viestejä muiden ihmisten henkilöllisyyksiin käyttäen yleisreititinjärjestelmää. Nämä viestit ovat aina salattuja ja allekirjoitettuja, ja ne välitetään välissä olevien solmujen kautta, kunnes ne saavuttavat lopullisen kohteensa. </p> <p>Etäiset viestit säilyvät sinun Lähtevissä kunnes vastaanottotodistus on saatu.</p> <p>Yleisesti, sinä voit käyttää viestejä suositellaksesi tiedostoja ystävillesi liittäen tiedostolinkkejä, tai suosittelemalla ystäväsolmuja muille ystäväsolmuille, täten vahvistaaksesi omaa verkkoasi, tai antaaksesi palautetta kanavan omistajalle.</p> Starred - Tähditetty + Tähdelliset @@ -13105,7 +13157,7 @@ Haluatko tallentaa viestin? This message goes to a distant person. - + Tämä viesti menee etäisellä henkilölle. @@ -13139,12 +13191,12 @@ Haluatko tallentaa viestin? This message comes from a distant person. - + Tämä viesti tulee etäiseltä henkilöltä. Mail - + Posti @@ -13152,7 +13204,7 @@ Haluatko tallentaa viestin? RetroShare Messenger - RetroSharen pikaviestin + Retrosharen pikaviestin @@ -13170,22 +13222,22 @@ Haluatko tallentaa viestin? Paste as plain text - + Liitä muokkaamattomana tekstinä Spoiler - + Paljastus Select text to hide, then push this button - + Valitse piilotettava teksti, paina sitten tätä painiketta Paste RetroShare Link - Liitä RetroShare-linkki + Liitä Retroshare-linkki @@ -13198,7 +13250,7 @@ Haluatko tallentaa viestin? Send Invite - + Lähetä kutsu @@ -13234,12 +13286,12 @@ Haluatko tallentaa viestin? from - alkaen + Reply to invite - + Vastaa kutsuun @@ -13269,12 +13321,12 @@ Haluatko tallentaa viestin? Send invite? - + Lähetä kutsu? Do you really want send a invite with your Certificate? - + Haluatko todella lähettää kutsun varmenteellasi? @@ -13322,7 +13374,7 @@ Haluatko tallentaa viestin? RetroShare Server - RetroShare-palvelin + Retroshare-palvelin @@ -13347,22 +13399,6 @@ Haluatko tallentaa viestin? Name Nimi - - Did I authenticated peer - Varmensin vertaisen - - - Did I sign his PGP key - Allekirjoitinko hänen PGP-avaimensa - - - Cert Id - Varmennetunniste - - - Last used - Viimeksi käytetty - Clear @@ -13440,7 +13476,7 @@ Haluatko tallentaa viestin? - 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. @@ -13482,66 +13518,20 @@ Avainippusi varmuuskopioitiin tiedostoon ennen poistoa. Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Varmuuskopiotiedoston luominen epäonnistui. Tarkista käyttöoikeudet pgp-hakemistoon, levytila jne. - - Personal signature - Henkilökohtainen allekirjoitus - - - PGP key signed by you - Olet allekirjoittanut PGP-avaimen - - - Marginally trusted peer - Rajallisesti luotettu vertainen - - - Fully trusted peer - Täysin luotettu vertainen - - - Untrusted peer - Ei-luotettu vertainen - - - Last hour - Viime tuntina - - - Today - Tänään - - - Never - Ei koskaan - - - %1 days ago - %1 päivää sitten - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - on varmentanut sinut. -Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden. - - - yourself - 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. + Tietojen epäjohdonmukaisuus avainnipussa. Tämä on todennäköisesti ohjelmointivirhe. Ota yhteyttä kehittäjiin. Export/create a new node - + Vie/luo uusi solmu Trusted keys only - + Luotetut avaimet ainoastaan @@ -13556,14 +13546,16 @@ Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden Profile details... - + Profiilin tiedot... Key removal has failed. Your keyring remains intact. Reported error: - + Avaimen poisto epäonnistui. Avainnippusi säilyy koskemattomana. + +Raportoitu virhe: @@ -13630,7 +13622,7 @@ Reported error: Log entries - + Lokimerkinnät @@ -13650,22 +13642,22 @@ Reported error: Newest on top - + Uusin ylimmäisenä Oldest on top - + Vanhin ylimmäisenä <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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;Uutissyöte</h1> <p>Lokisyö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> Log - + Loki @@ -13704,7 +13696,7 @@ Reported error: Chat Room - + Keskusteluhuone @@ -13736,32 +13728,32 @@ Reported error: Ip security - + IP-tietoturva Friend Connected - Ystävä yhdistyneenä + Ystävä linjoilla Circles - Piirit + Piirit Links - + Linkit Mails - + Postit Chats - + Keskustelut @@ -13786,32 +13778,32 @@ Reported error: Chat rooms - + Keskusteluhuoneet Chat Rooms - + Keskusteluhuoneet Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Huomioi kirjainkoko + Huomioi kirjainkoko @@ -13851,7 +13843,7 @@ 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;Ilmoita</h1> <p>Retroshare ilmoittaa uusista tapahtumista verkossasi. Käyttötavoistasi riippuen saatat haluta ottaa käyttöön tai pois käytöstä joitakin ilmoituksia. Tämä osio on sitä varten!</p> @@ -13901,7 +13893,7 @@ Reported error: Count all unread messages - + Laske lukemattomat viestit @@ -13909,17 +13901,17 @@ Reported error: Passphrase required - + Salasana vaadittu You need to sign your node's certificate. - + Sinun täytyy allekirjoittaa solmusi varmenne. You need to sign your forum/chatrooms identity. - + Sinun täytyy allekirjoittaa foorumisi/keskusteluhuoneitteisi henkilöllisyys. @@ -13929,7 +13921,7 @@ Reported error: Please enter your Retroshare passphrase - + Anna Retroshare salasanasi: @@ -13939,7 +13931,7 @@ Reported error: 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 on havainnut rekisteröimättömän lisäosan. Tämä voi tapahtua kahdesta syystä:<UL><LI>RetroSharen käynnistystiedosto on muuttunut.</LI><LI>Lisäosa on muuttunut</LI></UL>Paina Kyllä hyväksyäksesi lisäosan tai Ei estääksesi sen. Voit muuttaa asetuksen myöhemmin menemällä Asetukset -> Lisäosat, ja käynnistämällä RS:n uudelleen. + Retroshare on havainnut rekisteröimättömän lisäosan. Tämä voi tapahtua kahdesta syystä:<UL><LI>Retrosharen käynnistystiedosto on muuttunut.</LI><LI>Lisäosa on muuttunut</LI></UL>Paina Kyllä hyväksyäksesi lisäosan tai Ei estääksesi sen. Voit muuttaa asetuksen myöhemmin menemällä Asetukset -> Lisäosat, ja käynnistämällä RS:n uudelleen. @@ -13985,7 +13977,7 @@ Reported error: 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). - + Keskusteluaulojen toiminnan varmistamiseksi tietokoneesi ajan on oltava oikeassa. Tarkista, että näin on (mahdollinen useiden minuuttien aikasiirtymä havaittiin ystävilläsi). @@ -14020,11 +14012,11 @@ Reported error: - 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 - Käytä tätä luettelovalikkoa vaihtaaksesi nopeasti RetroSharen toimintaa + Käytä tätä luettelovalikkoa vaihtaaksesi nopeasti Retrosharen toimintaa Ei nimet. lat.: kytkee pois tiedostojen välittämisen Pelitila: 25% normaalista liikenteestä ja TODO: vähentää ponnahdusikkunoita Vähäinen liikenne: 10% normaalista liikenteestä ja TODO: tiedostonsiirrot tauolle @@ -14032,13 +14024,13 @@ Reported error: <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + <p>Varoitus: Tämä käyttötapa kytkee tunneli-palvelun pois päältä. Tämä tarkoittaa ettet voi käyttää etäistä keskustelua nimettömästi tiedostojen lataukseen ja postijärjestelmästä tulee hitaampi.</p><p>Tämä tila tallennetaan uudelleenkäynnistyksen jälkeen, joten älä unohda että muutit sitä!</p> Turtle routing disabled! - + Turtle-reititin kytketty pois! @@ -14046,42 +14038,42 @@ Reported error: Dialog - Dialogi + Ikkuna Profile info - + Profiilin tiedot Name : - + Nimi: Fingerprint : - + Sormenjälki: <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>PGP-avaimen sormenjälki on---oletettavasti väärentämätön---ominaisuus. Varmistaaksesi, että sinulla on oikea avain, vertaa sormenjälkiä.</p></body></html> Trust level: - + Luottamustaso: <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>Luottamustaso on vapaaehtoinen, paikallinen parametri, jonka voit asettaa muistaaksesi tietyn PGP-avaimen käytön. Sitä ei käytetä yhteyksien valtuuttamiseen. </p></body></html> Unset - + Asettamaton @@ -14091,7 +14083,7 @@ Reported error: No trust - + Ei luottamusta @@ -14111,46 +14103,50 @@ Reported error: This profile has signed your own profile key - + Tämä profiili on allekirjoitettu sinun profiiliavaimellasi Key signatures : - + Avain allekirjoitukset: <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;">Ystäväsi avaimen allekirjoittamisella ilmaiset luottamuksesi tähän ystävään muille ystävillesi. Allekirjoitukset alla kryptograafisesti todistavat, että luettelon avaimien omistajat tunnistavat nykyisen PGP-avaimen aidoksi.</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;"> +</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;">Ystävän avaimen allekirjoittamalla voit ilmaista luottamustasi tähän ystävään muille ystävillesi. Se auttaa heitä päättämään salliako yhteydenotot kyseiseltä avaimelta pohjautuen luottamukseesi. Avaimen allekirjoittaminen on täysin vapaaehtoista eikä sitä voi perua, joten tee se harkiten.</span></p></body></html> Sign this key - + Allekirjoita tämä avain PGP key - + PGP-avain These options apply to all nodes of the profile: - + Nämä vaihtoehdot koskevat kaikkia solmuja profiilissa: <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;">Ystäväsi avaimen allekirjoittamisella ilmaiset luottamuksesi tähän ystävään muille ystävillesi. Se auttaa heitä päättämään salliako yhteydet siitä avaimesta perustuen sinun omaan luottamukseen. Avaimen allekirjoittaminen on täysin vapaaehtoista, eikä sitä voi perua, joten tee niin harkiten.</span></p></body></html> @@ -14160,32 +14156,32 @@ p, li { white-space: pre-wrap; } <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>Napsauta tästä, jos haluat kieltäytyä yhteyksistä tämän avaimen todentamiin solmuihin.</p></body></html> Deny connections - + Torju yhteydet <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 - + Hyväksy yhteydet Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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>Tämä painike vaihtaa allekirjoitusten sisällyttämisen PGP-avaimen ASCII-näytössä. Katso kommentit allekirjoituksista toisessa välilehdessä. </p></body></html> @@ -14195,27 +14191,27 @@ p, li { white-space: pre-wrap; } Options - Asetukset + Asetukset <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">Retroshare käy ajoittain läpi ystäväluettelosi siirtojasi vastaavien selattavien tiedostojen varalta, jotta voitaisiin muodostaa suora siirtoyhteys. Tällaisessa tapauksessa ystäväsi tietää, että lataat tiedostoa.</p><p align="justify">Estääksesi toiminnan tämän ystävän tapauksessa, poista rasti tästä ruudusta. Voit silti muodostaa suoran siirtoyhteyden halutessasi, esim. lataamalla suoraan ystäväsi tiedostoluettelosta. Tätä asetusta sovelletaan kaikkiin saman solmun sijainteihin.</p></body></html> Use as direct source, when available - Käytä suorana lähteenä, kun saatavilla + Käytä suorana lähteenä, kun saatavilla <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. Applied to all locations of the same node.</p></body></html> - + <html><head/><body><p>Tämä asetus sallii automaattisen suositellun tiedoston latauksen viestistä, joka saapuu tästä solmusta. Tätä voidaan esimerkiksi käyttää tiedostojen lähettämiseen omien solmujesi kesken. Sovelletaan kaikkiin sijainteihin samasta solmusta.</p></body></html> Auto-download recommended files from this node - + Lataa automaattisesti suositellut tiedostot tästä solmusta @@ -14225,30 +14221,30 @@ p, li { white-space: pre-wrap; } Require white list clearance - + Vaadi sallittujen luettelossa oleminen Max upload speed (0=unlimited) - + Enimmäislähetysnopeus (0=rajoittamaton) Max download speed (0=unlimited) - + Vähimmäislatausnopeus (0=rajoittamaton) kB/s - + kB/s RetroShare - RetroShare + Retroshare @@ -14261,30 +14257,32 @@ p, li { white-space: pre-wrap; } The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - RetroShare ei tue antamaasi avainalgoritmia + Retroshare ei tue antamaasi avainalgoritmia (Tällä hetkellä vain RSA-avaimet käyvät) Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Kyllä. Warning: In your File-Transfer option, you select allow direct download to No. - + +Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla Ei. 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. - + Luottamustaso ilmaisee omaa luottamustasi tähän avaimeen. Ohjelma ei käytä sitä eikä sitä jaeta, mutta se voi olla hyödyllinen hyvien sekä huonojen avainten muistamiseen. Your trust in this peer is ultimate - + Luottamuksesi tähän vertaiseen on äärimmäinen @@ -14304,22 +14302,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + Tämä avain on allekirjoittanut sinun PGP-avaimesi <p>This PGP key (ID= - + <p>Tämä PGP-avain (Tunniste= You have chosen to accept connections from Retroshare nodes signed by this key. - + Olet hyväksynyt yhteydet tämän avaimen allekirjoittamilta Retroshare-solmuilta. You are currently not allowing connections from Retroshare nodes signed by this key. - + Et hyväksy yhteyksiä tämän avaimen allekirjoittamilta Retroshare-solmuilta. @@ -14334,22 +14332,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Et ole asettanut luottamustasoa tälle avaimelle. Retroshare profile - + Retroshare-profiili This is your own PGP key, and it is signed by : - + Tämä on sinun oma PGP-avain ja sen on allekirjoittanut: This key is signed by : - + Tämän avaimen on allekirjoittanut: @@ -14426,7 +14424,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Aikaero: @@ -14456,7 +14454,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + Ystävä aikaero @@ -14518,47 +14516,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. Drag your circles or people to each other. - + Vedä piirejäsi tai ihmisiä toisiinsa. Internal - + Sisäinen Chat with this person - + Keskustele henkilön kanssa Chat with this person as... - + Keskustelu henkilön kanssa... Send message to this person - + Lähetä viesti tälle henkilölle Person details - + Henkilön tiedot Distant chat cannot work - + Etäinen keskustelu ei toimi Distant chat refused with this person. - + Tämä henkilö torjui etäisen keskustelun Error code - + Virhekoodi @@ -14566,68 +14564,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - Ihmiset + Ihmiset Reputation - Maine + Maine <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + anna automaattisesti "Myönteinen" mielipide yhteyshenkilöilleni Difference in votes (+/-) to rate an ID negatively: - + Ero äänissä (+/-) tunnisteen arvosteluun kielteisesti: <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Kun henkilöllisyys saa enemmän myönteisiä ääniä kuin kielteisiä, se vaihtuu &quot;Neutraalista&quot; &quot;Myönteiseksi (ystäviesi mukaan)&quot;. Oletuksena yhden äänen ero on tarpeeksi, mutta voit tehdä tämän vaikeammaksi valitsemalla korkeamman numeron tässä.</p></body></html> Difference in votes (+/-) to rate an ID positively: - + Ero äänissä (+/-) tunnisteen arvosteluun myönteisesti: Delete banned identities after (0 means indefinitely): - + Poista pannatut henkilöllisyydet jälkeen (0 tarkoittaa loputtomasti) Reset reputation of banned identities after (0 means never): - + Palauta pannattujen henkilöllisyyksien maine jälkeen (0 tarkoittaa ei koskaan) <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + <html><head/><body><p>Pannattuja henkilöllisyyksiä ei merkitä ja siten menettävät aktiivisuuden. Ne poistetaan automaattisesti tietyn ajan jälkeen.</p></body></html> days - + päivää <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + <html><head/><body><p>Poistettujen pannattujen tunnisteiden paluun estämiseksi, koska niitä käytetään esim. foorumeilla tai kanavilla, pannatut henkilöllisyydet pidetään luettelossa jonkin aikaa. Sen jälkeen ne &quot;tyhjennetään&quot; pannattujen luettelosta ja ladataan uudestaan pannattomiksi, jos niitä käytetään foorumeille, keskusteluhuoneissa jne.</p></body></html> @@ -14718,7 +14716,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14731,7 +14729,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14744,7 +14742,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14892,7 +14890,7 @@ yrität muokata sitä! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14923,7 +14921,7 @@ p, li { white-space: pre-wrap; } Launch configuration panel, if provided by the plugin - Käynnistä asetusruutu, jos lisäosalla sellainen on + Käynnistä asetusnäkymä, jos lisäosalla sellainen on @@ -14953,7 +14951,7 @@ p, li { white-space: pre-wrap; } will be enabled after your restart RetroShare. - otetaan käyttöön, kun olet käynnistänyt RetroSharen uudelleen. + otetaan käyttöön, kun olet käynnistänyt Retrosharen uudelleen. @@ -14966,44 +14964,32 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Virhe: kohde '%1' ei voi luoda vimpainta Error: failed to remove file %1 (uninstalling plugin '%2') - + Virhe: tiedoston %1 poistaminen epäonnistui (poistetaan liitännäistä '%2') Error (uninstall): no plugin with name '%1' found - + Virhe (asennuksen poisto): liitännäistä nimeltä '%1' ei löytynyt Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Virhe: kohde '%1' ei voi luoda vimpainta + Virhe (asennus): liitännäistiedostoa %1 ei ole olemassa Error: no plugin with name '%1' found Virhe: lisäosaa '%1' ei löydy - - Error(uninstall): no plugin with name '%1' found - Virhe (poisto): lisäosaa '%1' ei löydy - - - Error(installation): plugin file %1 doesn't exist - Virhe (poisto): lisäosan tiedostoa %1 ei ole - Error: can't copy %1 to %2 - + Virhe: ei voi kopioida %1 %2 @@ -15044,12 +15030,12 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - + Lisäosa on estetty. Napsauta salli-painiketta ja käynnistä Retroshare uudestaan. [disabled] - + [estetty] @@ -15063,7 +15049,7 @@ p, li { white-space: pre-wrap; } [loading problem] - + [latausongelma] @@ -15109,7 +15095,7 @@ 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> - + @@ -15183,29 +15169,25 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. PopupDistantChatDialog - - 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. - Remote status unknown. - + Ulkoinen tila tuntematon. Can't send message immediately, because there is no tunnel available. - + Viestiä ei voida lähettää välittömästi, koska tunnelia ei ole saatavilla. The person you are talking to has deleted the secured chat tunnel. - + Henkilö, jonka kanssa puhut on poistanut suojatun keskustelutunnelin. The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Keskustelukumppani on poistanut suojatun tunnelin, viestit toimitetaan mahdollisimman pian. @@ -15233,7 +15215,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. RetroShare - RetroShare + Retroshare @@ -15273,7 +15255,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Link - + Linkki @@ -15286,7 +15268,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Lähetetyt</h1> <p>Lähetetyt-palvelu sallii sinun jakaa internet-linkkejä, jotka leviävät Retroshare-solmuihin kuten foorumeille ja kanaville</p> <p>Tilaavat käyttäjät voivat kommentoida linkkejä. Edistämisjärjestelmä mahdollistaa tärkeiden linkkien korostamisen.</p> <p>Linkkien jakamisessa ei ole mitään rajoituksia, joten ole siis varovainen niitä avatessasi.</p> <p>Lähetetyt linkit pidetään %1 päivän ajan, ja ajantasaistetaan viimeisten %2 päivän ajan, ellet muuta tätä.</p> @@ -15316,7 +15298,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Links - + Linkit @@ -15324,7 +15306,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Posted Topic - Aihe + Lähetetyn Aihe @@ -15362,7 +15344,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Subscribe to Posted - + Tilaa Lähetetyt @@ -15378,7 +15360,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Posted Description - + Lähetetyn kuvaus @@ -15388,7 +15370,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. New Posted - + Uudet Lähetetyt @@ -15449,12 +15431,12 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. New Comment: - + Uusi kommentti: Comment Value - + Kommentin arvo @@ -15537,7 +15519,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. RetroShare - RetroShare + Retroshare @@ -15552,7 +15534,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. 1-10 - 1-10 + 1-10 @@ -15562,10 +15544,6 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Tabs Välilehdet - - Posted - Lähetetty - Open each topic in a new tab @@ -15574,7 +15552,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Links - + Linkit @@ -15590,7 +15568,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. RetroShare Message - Print Preview - RetroShare-viesti - Tulostuksen esikatselu + Retroshare-viesti - Tulostuksen esikatselu @@ -15636,13 +15614,13 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15669,7 +15647,7 @@ p, li { white-space: pre-wrap; } RetroShare Identity files (*.asc) - RetroSharen henkilöllisyystiedostot (*.asc) + Retrosharen henkilöllisyystiedostot (*.asc) @@ -15737,17 +15715,17 @@ ja käyttää "Tuo"-painiketta ladataksesi sen Full keys available in your keyring: - + Täydet avaimet avainnipussasi: Export selected key - + Vie valittu avain You can use it now to create a new node. - + Voit käyttää sitä nyt luodaksesi uuden solmun. @@ -15837,7 +15815,7 @@ ja käyttää "Tuo"-painiketta ladataksesi sen RetroShare - RetroShare + Retroshare @@ -15950,65 +15928,49 @@ ja käyttää "Tuo"-painiketta ladataksesi sen Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - Napsauta lisätäksesi tämä RetroShare-varmenne PGP-avainnippuusi + Paina lisätäksesi tämä Retroshare-varmenne PGP-avainnippuusi ja avataksesi aputoiminnon ystävän lisäämiseksi - - Add file - Lisää tiedosto - - - Add files - Lisää tiedostoja - - - Do you want to process the link ? - Haluatko käsitellä linkin? - - - Do you want to process %1 links ? - Haluatko käsitellä %1 kpl linkkejä? - Warning: Retroshare is about to ask your system to open this file. - + Varoitus: Retroshare on pyytämässä järjestelmääsi avaamaan tämän tiedoston. Before you do so, please make sure that this file does not contain malicious executable code. - + Ennen kuin teet niin, varmista ettei tämä tiedosto sisällä haitallista suoritettavaa koodia. Identity added to People - + Henkilöllisyys lisätty Ihmisiin The identity was added to people. You can now chat with it, send messages to it, etc. - + Henkilöllisyys lisättiin Ihmisiin. Voit keskustella sen kanssa, lähettää viestejä sille, jne. Identity cannot be added to People - + Henkilöllisyyttä ei voida lisätä Ihmisiin The identity was not added to people. Some error occured. The link is probably corrupted. - + Henkilöllisyyttä ei lisätty Ihmisiin. Jokin virhe tapahtui. Linkki on todennäköisesti vioittunut. %1 of %2 RetroShare link processed. - %1 RetroShare-linkistä käsitelty, %2 jäljellä. + %1 Retroshare-linkistä käsitelty, %2 jäljellä. %1 of %2 RetroShare links processed. - %1 RetroShare-linkeistä käsitelty, %2 jäljellä. + %1 Retroshare-linkeistä käsitelty, %2 jäljellä. @@ -16113,17 +16075,17 @@ ja avataksesi aputoiminnon ystävän lisäämiseksi Posted not found - + Lähetettyä ei löytynyt Posted message not found - + Lähetettyä viestiä ei löytynyt Posted messages not found - + Lähetettyjä viestejä ei löytynyt @@ -16133,22 +16095,22 @@ ja avataksesi aputoiminnon ystävän lisäämiseksi Click to browse/download this file collection - + Napsauta selataksesi/ladataksesi tämän tiedostokokoelman %1 (%2) - + %1 (%2) Identity link (name=%1, ID=%2) - + Henkilöllisyys linkki (nimi=%1, tunniste=%2) %1 (%2 files, %3) - + %1 (%2 tiedostoa, %3) @@ -16168,7 +16130,7 @@ ja avataksesi aputoiminnon ystävän lisäämiseksi Chat room not found - + Keskusteluhuonetta ei löytynyt @@ -16230,7 +16192,7 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä 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. + 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. @@ -16241,7 +16203,7 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä RetroShare - RetroShare + Retroshare @@ -16261,36 +16223,38 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä Cannot start Tor Manager! - + Tor cannot be started on your system: - + Tor-verkkoa ei voida käynnistää järjestelmässäsi: + + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + Piilotettua tor-palvelua ei voida käynnistää! It was not possible to start a hidden service. - + Piilotetun palvelun käynnistäminen ei ollut mahdollista. @@ -16303,7 +16267,7 @@ The error reported is:" Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - Koneellasi on jo käynnissä samaa profiilia käyttävä RetroShare-ohjelma. Ole hyvä ja sulje ohjelma ensin + Koneellasi on jo käynnissä samaa profiilia käyttävä Retroshare-ohjelma. Ole hyvä ja sulje ohjelma ensin Lukitustiedosto: @@ -16324,20 +16288,12 @@ Lukitustiedosto: Tunnel is pending... Messages will be delivered as soon as possible - + Tunneli odottaa...Viestit toimitetaan mahdollisimman pian Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Tunneli odottaa... - - - Secured tunnel is working. You can talk! - Suojattu tunneli toimii. Voit puhua! + Suojattu tunneli toimii. Viestit toimitetaan välittömästi! @@ -16353,7 +16309,7 @@ Virhe: Click to send a private message to %1 (%2). - Lähetä yksityinen viesti henkilölle %1 (%2) napsauttamalla tätä. + Lähetä yksityinen viesti henkilölle %1 (%2) painamalla tätä. @@ -16363,12 +16319,12 @@ Virhe: Click this link to send a private message to %1 (%2) - Napsauttamalla tätä linkkiä voit lähettää yksityisen viestin henkilölle %1 (%2) + Painamalla tätä linkkiä voit lähettää yksityisen viestin henkilölle %1 (%2) RetroShare Certificate (%1, @%2) - RetroSharen varmenne (%1, @%2) + Retrosharen varmenne (%1, @%2) @@ -16378,47 +16334,47 @@ Virhe: TR up - + TR dn - + Data up - + Data dn - + Data forward - + Datan lähetys You appear to have nodes associated to DSA keys: - + Sinulla näyttäisi olevan solmuja kytkettynä DSA-avaimiin: DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + Retroshare ei tällä hetkellä tue DSA-avaimia. Et voi käyttää näitä solmuja. Olemme pahoillamme. enabled - + käytössä disabled - + estetty @@ -16439,37 +16395,37 @@ Virhe: %1 seconds ago - + %1 sekuntia sitten %1 minute ago - + %1 minuutti sitten %1 minutes ago - + %1 minuuttia sitten %1 hour ago - + %1 tunti sitten %1 hours ago - + %1 tuntia sitten %1 day ago - + %1 päivä sitten @@ -16480,174 +16436,175 @@ Virhe: Subject: - Aihe: + Aihe: Participants: - + Osallistujat: Auto Subscribe: - + Tilaa automaattisesti: Id: - + Tunniste: Security: no anonymous IDs - + +Tietoturva: ei nimettömiä tunnisteita Join chat room - + Liity keskusteluhuoneeseen This cert is malformed. Error code: - + Tämä varmenne on virheellinen. Virhekoodi: The following has not been added to your download list, because you already have it: - + Seuraavaa ei ole lisätty latausluetteloosi, koska sinulla on se jo ennestään: Error - Virhe + Virhe unable to parse XML file! - + XML-tiedoston jäsentäminen epäonnistui! Indefinitely - + Toistaiseksi 5 days - + 5 päivää 2 weeks - + 2 viikkoa 1 month - + 1 kuukausi 2 month - + 2 kuukautta 6 month - + 6 kuukautta 1 year - + 1 vuosi days - + päivää Processing - + Käsitellään Choosing group - + Valitaan ryhmä Creating receipt - + Luodaan kuittia Signing receipt - + Allekirjoitetaan kuitti Serializing - + Sarjoitetaan Creating payload - + Luodaan hyötykuormaa Encrypting payload - + Salataan hyötykuormaa Publishing - + Julkaistaan Waiting for receipt - + Odotetaan kuittia Receipt received - + Kuitti vastaanotettu Receipt signature failed - + Kuitin allekirjoitus epäonnistui Encryption failed - + Salaus epäonnistui Unknown - Tuntematon + Tuntematon Click to pause the hashing process - + Napsauta keskeyttääksesi tiivisteen laskenta [Hashing is paused] - + [Tiivisteen laskenta keskeytetty] Click to resume the hashing process - + Napsauta jatkaaksesi tiivisteen laskentaa @@ -16662,12 +16619,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16680,19 +16637,19 @@ 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:8pt;">Tervetuloa RetroShareen!</span></p> +<p 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;">Tervetuloa Retroshareen!</span></p> <p style="-qt-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;">Tämä ohjattu pika-aloitus auttaa sinua määrittämään RetroSharen asetukset muutamalla yksinkertaisella askeleella.</span></p> +<p 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;">Tämä ohjattu pika-aloitus auttaa sinua määrittämään Retrosharen asetukset muutamalla yksinkertaisella askeleella.</span></p> <p style="-qt-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;">Jos olet edistyneempi käyttäjä, voit päästä käsiksi RetroSharen täysimittaisiin asetuksiin Työkalupalkin kautta. Paina Lopeta sulkeaksesi ohjatun toiminnon milloin tahansa.</span></p> +<p 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;">Jos olet edistyneempi käyttäjä, voit päästä käsiksi Retrosharen täysimittaisiin asetuksiin Työkalupalkin kautta. Paina Lopeta sulkeaksesi ohjatun toiminnon milloin tahansa.</span></p> <p style="-qt-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;">Tämä ohjattu toiminto auttaa sinua:</span></p> <p style="-qt-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;"> Kertomaan RetroSharelle internetyhteydestäsi.</span></p> +<p 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;"> Kertomaan Retrosharelle internetyhteydestäsi.</span></p> <p style="-qt-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;"> Valitsemaan, mitä tiedostoja haluat jakaa.</span></p> <p style="-qt-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;"> Pääsemään alkuun RetroSharen käyttämisessä.</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:8pt;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Pääsemään alkuun Retrosharen käyttämisessä.</span></p></body></html> @@ -16714,7 +16671,7 @@ p, li { white-space: pre-wrap; } For best performance, RetroShare needs to know a little about your connection to the internet. - Varmistaakseen tehokkaan toimivuuden, RetroSharen tulee tietää hieman internetyhteydestäsi. + Varmistaakseen tehokkaan toimivuuden, Retrosharen tulee tietää hieman internetyhteydestäsi. @@ -16790,10 +16747,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16838,31 +16795,31 @@ p, li { white-space: pre-wrap; } RetroShare Page Display Style - + Retroshare sivu näyttötyyli Where do you want to have the buttons for the page? - + Minne haluat painikkeet sivulle? ToolBar View - + Työkalupalkkinäkymä 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16870,15 +16827,15 @@ 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> -<p 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;">Toivomme, että nautit RetroSharen käytöstä!</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:8pt;">Toivomme, että nautit Retrosharen käytöstä!</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> @@ -16886,15 +16843,15 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vielä yksi askel! Olet lähes säätänyt RetroSharen toimimaan koneellasi.</span></p> +<p 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;">Vielä yksi askel! Olet lähes säätänyt Retrosharen toimimaan koneellasi.</span></p> <p style="-qt-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;">Nämä asetukset määrittävät milloin ja miten RetroShare käynnistyy.</span></p> +<p 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;">Nämä asetukset määrittävät milloin ja miten Retroshare käynnistyy.</span></p> <p style="-qt-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 - Älä näytä viestiä RetroSharea suljettaessa + Älä näytä viestiä Retrosharea suljettaessa @@ -16904,7 +16861,7 @@ p, li { white-space: pre-wrap; } Start RetroShare when my System Starts. - Käynnistä RetroShare järjestelmän käynnistyessä. + Käynnistä Retroshare järjestelmän käynnistyessä. @@ -16957,12 +16914,15 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Ole hyvä ja päätä onko tämä hakemisto +* Verkostonlaajuinen: nimettömästi jaettu verkossa (mukaan lukien ystäväsi) +* Selattavissa: ystäviesi selattavissa +* Yleinen: molemmat Do you really want to stop sharing this directory ? - Haluatko todella lopettaa tämän hakemiston jakamisen? + Haluatko todella lopettaa tämän hakemiston jakamisen? @@ -17006,52 +16966,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Sallittu oletuksena Denied by default - + Estetty oletuksena Enabled for this peer - + Sallittu tälle vertaiselle Disabled for this peer - + Estetty tälle vertaiselle Enabled by remote peer - + Ulkoisen vertaisen sallima Disabled by remote peer - + Ulkoisen vertaisen estämä Globally switched Off - + Yleisesti kytketty pois Service name: - + Palvelun nimi: Peer name: - + Vertaisen nimi: Peer Id: - + Vertaisen tunniste: @@ -17059,17 +17019,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + Näytä sarake... [no title] - + [ei otsikkoa] @@ -17087,74 +17047,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Enable Relay Connections - Ota käyttöön välitetyt yhteydet - - - Use Relay Servers - Käytä välityspalvelimia - - - Relay options - Välitysasetukset - - - Number - Luku - - - Bandwidth per link - Kaista per linkki - - - Total Bandwidth - Kaistanleveys - - - Friends - Ystävät - - - kB/s - kB/s - - - Friends of Friends - Ystävien ystävät - - - General - Yleiset - - - Total: - Yhteensä: - - - Relay Server Setup - Välityspalvelimen asetukset - - - Add Server - Lisää palvelin - - - Server DHT Key - Palvelimen DHT-avain - - - Remove Server - Poista palvelin - - - Relay - Välitys + <strong>Lataus:</strong> 0.00 (kB/s) | <strong>Lähetys:</strong> 0.00 (kB/s) @@ -17162,7 +17055,7 @@ p, li { white-space: pre-wrap; } Download... - + Ladataan... @@ -17172,11 +17065,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Suosittele viestissä vastaanottajalle + Suosittele viestissä vastaanottajalle... @@ -17189,12 +17078,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + [Kaikki ystäväsolmut] Only - + Ainoastaan @@ -17204,7 +17093,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + Tämä solmu ei ole lähettänyt mitään hakemistotietoja vielä. @@ -17212,7 +17101,7 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP-osoite ei ole tarkistettu @@ -17227,7 +17116,7 @@ p, li { white-space: pre-wrap; } IP address accepted - + IP-osoite hyväksytty @@ -17260,13 +17149,13 @@ p, li { white-space: pre-wrap; } Only IP - + Ainoastaan IP Entire range - + Koko alue @@ -17274,32 +17163,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Tallenna kokoelmatiedosto. + Tallenna kokoelmatiedosto. File already exists. - + Tiedosto on jo olemassa. What do you want to do? - Mitä haluat tehdä? + Mitä haluat tehdä? Overwrite - Korvaa + Korvaa Merge - Yhdistä + Yhdistä Cancel - Peru + Peruuta @@ -17322,12 +17211,12 @@ p, li { white-space: pre-wrap; } Destination: - + Kohde: Right click to change download directory - + Napsauta oikealla vaihtaaksesi lataushakemistoa @@ -17363,7 +17252,7 @@ p, li { white-space: pre-wrap; } 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. Joissakin tiedostonimissä tai hakemistojen nimissä on kiellettyjä merkkejä. Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä '_'. @@ -17383,30 +17272,22 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä <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>Lisää valittu kohde kokoelmaan yksi kerrallaan.</p><p>Valitse hakemisto, jossa on kohde myös.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Enter&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>Lisää valittu kohde kokoelmaan.</p><p>Jos hakemisto on valittu, kaikki sen sisältämät alihakemistot ja tiedostot lisätään.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&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>Luo uusi hakemisto kokoelmaan.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> Remove Duplicate - + Poista kaksoiskappale @@ -17421,17 +17302,13 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä File Path - + Tiedostopolku File Count Tiedostojen määrä - - This is the root directory. - Tämä on juurihakemisto. - Real Size: Waiting child... @@ -17445,22 +17322,22 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä This is a directory. Double-click to expand it. - Tämä on hakemisto. Laajenna se kaksoisnapsauttamalla. + Tämä on hakemisto. Laajenna se kaksoisnapauttamalla. Download files - + Lataa tiedostot Specify... - Määritä... + Määritä... Choose directory - Valitse hakemisto + Valitse hakemisto @@ -17502,12 +17379,12 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä Do you want to remove them and all their children, too? - + Haluatko poistaa ne ja niiden sisältämät kohteet myös? Do you want to remove this file from the list? - + Haluatko poistaa tämän tiedoston luettelosta? @@ -17522,17 +17399,17 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä <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>Muuta tiedostoa, johon kokoelma tallennetaan .</p><p>Jos valitsit olemassa olevan tiedoston, voit yhdistää sen.</p></body></html> File already exists. - + Tiedosto on jo olemassa. <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>Poista valittu kohde kokoelmasta.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> @@ -17577,26 +17454,6 @@ If you believe it is correct, remove the corresponding line from the file and re Jos se on mielestäsi kunnollinen, poista mainittu rivi tiedostosta ja avaa se uudelleen Retrosharessa. - - Save Collection File. - Tallenna kokoelmatiedosto. - - - What do you want to do? - Mitä haluat tehdä? - - - Overwrite - Korvaa - - - Merge - Yhdistä - - - Cancel - Peru - RsDownloadListModel @@ -17604,128 +17461,119 @@ Jos se on mielestäsi kunnollinen, poista mainittu rivi tiedostosta ja avaa se u Name i.e: file name - Nimi + Nimi Size i.e: file size - Koko + Koko Completed - Valmis + Valmis Speed i.e: Download speed - Nopeus + Nopeus Progress / Availability i.e: % downloaded - Edistyminen / saatavuus + Edistyminen / saatavuus Sources i.e: Sources - Lähteet + Lähteet Status - Tila + Tila Speed / Queue position - Nopeus / paikka jonossa + Nopeus / paikka jonossa Remaining - Jäljellä + Jäljellä Download time i.e: Estimated Time of Arrival / Time left - Latausaika + Latausaika Hash - Tiiviste (hash) + Tiiviste Last Time Seen i.e: Last Time Receiced Data - Viimeksi nähty + Viimeksi nähty Path i.e: Where file is saved - Polku + Polku Failed - Epäonnistunut + Epäonnistui Okay - OK + OK Waiting - Odotetaan + Odotetaan Downloading - Ladataan + Ladataan Complete - Valmis + Valmis Queued - Jonossa + Jonossa Paused - Tauolla + Tauolla Checking... - Tarkistaa... + Tarkistaa... Unknown - Tuntematon - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Kuva on liian suuri siirron kannalta. -Pienennetäänkö kuva kokoon %1x%2 pikseliä? + Tuntematon @@ -17733,7 +17581,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Invalid format - + Viallinen muoto @@ -17741,67 +17589,63 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Resets ALL stored RetroShare settings. - Palauttaa KAIKKI tallennetut RetroSharen asetukset. + Palauttaa KAIKKI tallennetut Retrosharen asetukset. Sets the directory RetroShare uses for data files. - Asettaa hakemiston, jota RetroShare käyttää datatiedostoille. + Asettaa hakemiston, jota Retroshare käyttää datatiedostoille. filename - + tiedostonimi Sets the name and location of RetroShare's logfile. - Asettaa RetroSharen lokitiedoston nimen ja sijainnin. + Asettaa Retrosharen lokitiedoston nimen ja sijainnin. level - + taso Sets the verbosity of RetroShare's logging. - Asettaa RetroSharen lokin runsassanaisuuden. + Asettaa Retrosharen lokin runsassanaisuuden. style - + tyyli Sets RetroShare's interface style. - Asettaa RetroSharen käyttöliittymän tyylin. + Asettaa Retrosharen käyttöliittymän tyylin. stylesheet - + tyylitiedosto Sets RetroShare's interface stylesheets. - Asettaa RetroSharen käyttöliittymän tyylitiedostot. + Asettaa Retrosharen käyttöliittymän tyylitiedostot. language - + kieli Sets RetroShare's language. - Asettaa RetroSharen kielen. - - - RetroShare Usage Information - RetroSharen käyttötiedot + Asettaa Retrosharen kielen. @@ -17812,7 +17656,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Invalid operating mode specified: - + Virheellinen käyttötapa määritelty: @@ -17827,52 +17671,52 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Revision - + Tarkistus opmode - + käyttötapa Sets RetroShare's operating mode. - + Asettaa Retrosharen käyttötavan. RsLinkURL - + RsLinkURL Open RsLink with protocol retroshare:// - + Avaa RsLink retroshare://-protokollaa käyttäen Open RsFile with or without arg. - + Avaa RsFile argumentin kanssa tai ilman. RetroShare GUI Usage Information - + Retrosharen graafisen käyttöliittymän käyttötiedot Invalid language code specified: - + Virheellinen kielikoodi määritelty: Invalid GUI style specified: - + Virheellinen graafinen käyttöliittymä-tyyli määritelty: Invalid log level specified: - + Virheellinen lokitaso määritelty: @@ -17881,7 +17725,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Registry Access Error. Maybe you need Administrator right. - + Rekisterin käyttövirhe. Tarvitset ehkä Järjestelmänvalvojan oikeudet. @@ -18044,7 +17888,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Document - Dokumentti + Asiakirja @@ -18090,12 +17934,12 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki Send RetroShare Link - Lähetä RetroShare-linkki + Lähetä Retroshare-linkki @@ -18143,7 +17987,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? New RetroShare Link(s) - Uusi RetroShare-linkki/-linkit + Uusi Retroshare-linkki/-linkit @@ -18197,7 +18041,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? IP address: - + IP-osoite: @@ -18212,7 +18056,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Peer Name: - + Vertaisen nimi: @@ -18229,12 +18073,12 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? but reported: - + mutta raportoitu: Wrong external ip address reported - + Väärä ulkoinen IP-osoite raportoitu @@ -18244,18 +18088,18 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? <p>This is the external IP your Retroshare node thinks it is using.</p> - + <p>Retroshare-solmusi mukaan käytössä on tämä ulkoinen IP.</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> - + <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> - + @@ -18263,7 +18107,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? wants to be friend with you on RetroShare - haluaa olla ystäväsi RetroSharessa + haluaa olla ystäväsi Retrosharessa @@ -18403,12 +18247,12 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Peer/node not in friendlist (PGP id= - + Vertainen/solmu ei ole ystäväluettelossa (PGP tunniste= Missing/Damaged SSL certificate for key - + @@ -18421,7 +18265,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Network Mode - Verkon toimintatapa + Verkon toimintatapa @@ -18467,7 +18311,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? NAT - + NAT @@ -18505,17 +18349,13 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Known / Previous IPs: Tunnetut / aiemmat IP:t: - - Show Discovery information in statusbar - Näytä etsintätiedot tilarivillä - 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. - Jos poistat tästä rastin, RetroShare voi määritellä + Jos poistat tästä rastin, Retroshare voi määritellä IP-osoitteesi ainoastaan, kun olet yhteydessä johonkuhun. Tämän jättäminen päälle helpottaa yhteydenottoa, kun sinulla on vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana. @@ -18523,7 +18363,7 @@ vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana. Allow RetroShare to ask my ip to these websites: - Salli RetroSharen kysyä IP:täni näiltä verkkosivuilta: + Salli Retrosharen kysyä IP:täni näiltä verkkosivuilta: @@ -18558,7 +18398,7 @@ vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Tor on Retrosharen automaattisesti määrittelemä. Sinun ei pitäisi tarvita muuttaa mitään tässä. @@ -18568,53 +18408,53 @@ vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana. Hidden - See Config - + Piilotettu - Katso asetukset I2P Address - + I2P-osoite I2P incoming ok - + I2P saapuva ok Points at: - + Osoittaa: Tor incoming ok - + Tor saapuva ok incoming ok - + saapuva ok Proxy seems to work. - + Välityspalvelin näyttää toimivan. I2P proxy is not enabled - + I2P-välityspalvelin ei ole käytössä BOB is running and accessible - + BOB on käynnissä ja saatavilla BOB is not accessible! Is it running? - + BOB ei ole saatavilla! Onko se käynnissä? @@ -18623,133 +18463,141 @@ vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana. - + Retroshare käyttää BOB:a määrittääkseen %1 -tunnelin %2:%3 (nimetty %4) + +Kun muutat asetuksia (esim. porttia) käytä painikkeita alhaalla käynnistääksesi uudelleen BOB:n. + + client - + asiakas server - + palvelin unknown - tuntematon + tuntematon BOB is processing a request - + BOB käsittelee pyyntöä connectivity check - + yhteys tarkistus generating key - + luodaan avainta starting up - + käynnistyy shuting down - + suljetaan BOB is processing a request: %1 - + BOB käsittelee pyyntöä: %1 BOB is broken - + BOB on rikki + BOB encountered an error: - + BOB virhe tapahtui: + BOB tunnel is running - + BOB-tunneli on käynnissä BOB is working fine: tunnel established - + BOB toimii hyvin: tunneli toiminnassa BOB tunnel is not running - + BOB-tunneli ei ole käynnissä BOB is inactive: tunnel closed - + BOB on toimeton: tunneli suljettu request a new server key - + pyydä uutta palvelin-avainta load server key from base64 - + lataa palvelin avain base64:sta stop BOB tunnel first to generate a new key - + pysäytä ensiksi BOB-tunneli luodaksesi uuden avaimen stop BOB tunnel first to load a key - + pysäytä ensiksi BOB-tunneli ladataksesi avaimen stop BOB tunnel first to disable BOB - + pysäytä ensiksi BOB-tunneli kytkeäksesi BOB:n pois päältä You are reachable through the hidden service. - + Olet tavoitettavissa piilotetun palvelun kautta. The proxy is not enabled or broken. Are all services up and running fine?? Also check your ports! - + Välityspalvelin ei ole käytössä tai on rikki. +Ovatko kaikki palvelut päällä ja käynnissä?? +Tarkista myös porttisi! [Hidden mode] - + [Piilotettu tila] <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> - + @@ -18759,159 +18607,165 @@ Also check your ports! Download limit (KB/s) - + Latausraja (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>Tämä lataus rajoitus kattaa koko sovelluksen. Siitä huolimatta jossain tilanteissa, kuten siirrettäessä useita pieniä tiedostoja kerrallaan, arvioidusta kaistan käytöstä tulee epäluotettava ja Retrosharen raportoima kokonaisarvo voi ylittää rajan. </p></body></html> Upload limit (KB/s) - + Lähetysraja (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>Lähetysrajoitus käsittää koko ohjelman. Liian alhainen rajoitus voi lopulta estää alhaisen prioriteetin palvelut (foorumit, kanavat) Suositeltu vähimmäisarvo on 50KB/s. </p></body></html> WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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-välityspalvelin oletus: 127.0.0.1:9050. Aseta torrc-määrityksissä ja päivitä tähän. + +I2P SOCKS-välityspalvelin: katso http://127.0.0.1:7657/i2ptunnelmgr asiakastunnelin käyttöönotosta: +Ohjattu toiminto tunnelin määrittämiseksi -> Asiakas-tunneli -> SOCKS 4/4a/5 -> kirjoita nimi -> jätä 'Outproxies' tyhjäksi -> kirjoita portti (älä unohda!) [voit halutessasi asettaa saatavuuden 127.0.0.1] -> Seuraava -> rastita 'Automaattinen käynnistys' -> valmis! +Kirjoita nyt osoite (esim. 127.0.0.1) ja portti, jonka valitsit aiemmin I2P-välityspalvelimelle. + +Voit nyt yhdistää Piilotettuihin solmuihin, ja vaikka käytössäsi olisi normaali Solmu, miksi et määrittäisi Tor ja/tai I2P? Automatic I2P/BOB - + Automaattinen I2P/BOB Enable I2P BOB - changing this requires a restart to fully take effect - + Salli I2P BOB - vaatii uudelleenkäynnistyksen toimiakseen enableds advanced settings - + sallii lisäasetukset advanced mode - + edistynyt tila I2P Basic Open Bridge - + I2P Instance address - + I2P-instanssiosoite 127.0.0.1 - 127.0.0.1 + 127.0.0.1 I2P proxy port - + I2P-välityspalvelinportti BOB accessible - + BOB saatavissa Address - + Osoite .b32.i2p - + .b32.i2p generate new - + luo uusi Tunnel length (in/out) - + Tunnelin pituus (sisään/ulos) Tunnel quantity (in/out) - + Tunnelin määrä (sisään/ulos) Tunnel variance (in/out) - + Tunnelin vaihtelu (sisään/ulos) <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + <html><head/><body><p>Palvelin-avain - Kun avain on asetettu sitä käytetään määrittämään piilotettu<br/>I2P-palvelu. Muuten ainoastaan asiakas-tunneli luodaan.</p></body></html> load key - + lataa avain Start - Käynnistä + Käynnistä Restart - + Uudelleenkäynnistä Stop - Pysäytä + Pysäytä BOB status - + BOB-tila Incoming - Saapuva + Saapuva <html><head/><body><p>Setup your hidden address (and port if needed)</p></body></html> - + <html><head/><body><p>Aseta piilotettu osoite (ja portti tarvittaessa)</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>Tämä painike jäljittelee SSL-yhteyttä sinun piilotettuun osoitteeseen käyttäen vastaavaa välityspalvelinta. Jos piilotettu solmu on tavoitettavissa, sen pitäisi aiheuttaa SSL-kättelyvirheen, jonka RS tulkitsee voimassa olevana yhteystapana. Tämä operaatio voi aiheuttaa useita &quot;turvallisuusvaroituksia&quot; yhteyksistä sinun sisäisestä verkkoliityntä IP:stä (127.0.0.1) Uutissyötteessä, jos olet sen sallinut, minkä voit tulkita merkkinä hyvästä yhteydestä.</p></body></html> @@ -18925,101 +18779,114 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Vastaanottaaksesi yhteyksiä, sinun täytyy ensiksi määrittää Tor/I2P-piilotettu palvelu. + +Tor: Katso torrc ja asiakirjat koskien MITEN-tietoja. + +I2P: Katso http://127.0.0.1:7657/i2ptunnelmgr palvelintunnelin käyttöönotosta: +Ohjattu toiminto tunnelin määrittämiseksi -> Palvelin-tunneli -> Oletus -> kirjoita nimi -> kirjoita osoite ja portti, joita RS käyttää (katso paikallinen osoite yläpuolelta) -> Rastita 'Automaattinen käynnistys' -> Valmis! + +Kun tämä on tehty, liitä Onion/I2P (Base32)-osoite yläpuolella olevaan laatikkoon. +Tämä on sinun Tor/I2P-verkon ulkoinen osoite. +Lopuksi varmista, että portit vastaavat asetuksia. + +Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myös Tor-lokisi.. Relay - Välitys + Välitys Enable Relay Connections - Ota käyttöön välitetyt yhteydet + Use Relay Servers - Käytä välityspalvelimia + Relay options - Välitysasetukset + Number - Luku + Numero Bandwidth per link - Kaista per linkki + Kaista per linkki Total Bandwidth - Kaistanleveys + Kaistanleveys Friends - Ystävät + Ystävät Friends of Friends - Ystävien ystävät + Ystävien ystävät General - Yleiset + Yleiset Total: - Yhteensä: + Yhteensä: Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Välityspalvelimen asetukset + Add Server - Lisää palvelin + Lisää palvelin Server DHT Key - Palvelimen DHT-avain + Palvelin DHT-avain Remove Server - Poista palvelin + Poista palvelin - <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>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> - + <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, kun toimit välittäjänä ystävillesi, ystäviesi ystäville, tai kenelle tahansa Retroshare-verkossa.</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> @@ -19029,12 +18896,12 @@ If you have issues connecting over Tor check the Tor logs too. IP Filters - + IP-suodattimet Activate IP filtering - + Aktivoi IP-suodatus @@ -19045,7 +18912,7 @@ If you have issues connecting over Tor check the Tor logs too. IP range - + IP-avaruus @@ -19059,13 +18926,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Alkuperä Reason - + Syy @@ -19077,7 +18944,7 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IPt @@ -19087,17 +18954,17 @@ If you have issues connecting over Tor check the Tor logs too. 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>Kirjoita IP-avaruus. Hyväksytyt muodot:</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>Kirjoita mikä tahansa kommentti</p></body></html> @@ -19112,89 +18979,89 @@ If you have issues connecting over Tor check the Tor logs too. Hidden Service Configuration - + Piilotetun palvelun asetukset <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>Tämä on Tor SOCKS-välityspalvelimen portti. Retroshare-solmusi voi käyttää tätä porttia yhdistääkseen</p><p>Piilotettuihin solmuihin. Tämä valo oikealla muuttuu vihreäksi, kun portti on käytössä tietokoneellasi. </p><p>Tämä ei kuitenkaan tarkoita sitä, että Retroshare-liikenteesi siirtyy Tor:n kautta. Näin tapahtuu ainoastaan, jos </p><p>sinä itse yhdistät Piilotettuihin solmuihin, tai käytät Piilotettua solmua itse.</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-välityspalvelin <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>Tämä on I2P SOCKS-välityspalvelimen portti. Retroshare-solmusi voi käyttää tätä porttia yhdistääkseen</p><p>Piilotettuihin solmuihin. Tämä valo oikealla muuttuu vihreäksi, kun portti on käytössä tietokoneellasi. </p><p>Tämä ei kuitenkaan tarkoita sitä, että Retroshare-liikenteesi siirtyy I2P:n kautta. Näin tapahtuu ainoastaan, jos </p><p>sinä itse yhdistät Piilotettuihin solmuihin, tai käytät Piilotettua solmua itse.</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 lähtevä ok Service Address - + Palvelun osoite <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>Tämä on sinun piilotettu osoite. Sen pitäisi näyttää <span style=" font-weight:600;">[jotain].onion</span> tai <span style=" font-weight:600;">[jotain].b32.i2p. </span>Jos olet määrittänyt Tor-piilotetun palvelun, onion-osoite luodaan automaattisesti. Voit saada sen esim. <span style=" font-weight:600;">/var/lib/tor/[palvelun nimi]/hostname</span>. I2P: Määritä palvelin-tunneli ( http://127.0.0.1:7657/i2ptunnelmgr ) ja kopioi sen base32-osoite, kun se on käynnistynyt (sen pitäisi päättyä .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>Tämä on paikallinen osoite johon piilotettu pavelu osoittaa sisäistä verkkoliityntää. Yleensä, <span style=" font-weight:600;">127.0.0.1</span> on oikea vastaus.</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>Tämä valo muuttuu vihreäksi ainoastaan, jos käynnistät aktiivisen testin käyttäen ylläolevaa painiketta. </p><p>Kun näin tapahtuu, se tarkoittaa, että piilotettu solmusi voidaan tavoittaa mistä tahansa käyttäen Tor (vastaavasti I2P) </p><p>-verkkoa. Onnittelut!</p></body></html> incoming ok - + Saapuvat OK Expected Configuration: - + Oletusasetukset: Please fill in a service address - + Täytä palveluosoite IP Range - + IP-avaruus Reported by DHT for IP masquerading - + DHT raportoi IP:n naamioinnista Range made from %1 collected addresses - + Väli luotu %1 kerätyistä osoitteista @@ -19207,7 +19074,7 @@ If you have issues connecting over Tor check the Tor logs too. Added by you - + Sinun lisäämäsi @@ -19217,17 +19084,17 @@ If you have issues connecting over Tor check the Tor logs too. <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 sallii sinun vastata ystäviesi yhteyspyyntöihin käyttäen BitTorrentin DHT:tä. Se parantaa yhteydenpitoa huomattavasti. DHT:lle ei kuitenkaan tallenneta mitään tietoa. Sitä käytetään ainoastaan välityspalvelin-järjestelmänä yhteydenmuodostamisessa muihin Retroshare-solmuihin.</p><p>Etsintä-palvelu lähettää solmun nimen ja luotetuttujen kontaktien tunnisteet yhdistetyille vertaisille, auttaen heitä valitsemaan uusia ystäviä. Ystävyys ei kuitenkaan ole milloinkaan automaattista ja molempien vertaisten pitää luottaa toisiinsa salliakseen yhteyden. </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>Tämä tilailmaisin muuttuu vihreäksi heti, kun Retroshare onnistuu saamaan sinun oman IP:si alla olevilta verkkosivuilta, jos olet sallinut sen toiminnon. Retroshare yrittää myös saada muilla tavoin selville oman IP:si.</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>Luettelo täyttyy automaattisesti useista lähteistä kerätyn tiedon perusteella: DHT:n raportoimat naamioituneet vertaiset, ystäviesi raportoimat ja itse antamasi IP-alueet.</p><p>Naamioituneiden IP-osoitteiden automaattinen arvaaminen saattaa viedä ystäväsi estettyjen luetteloon. Tällaisissa tapauksissa voit käyttää pikavalikkoa lisätäksesi heidät sallittuihin.</p></body></html> + <html><head/><body><p>Luettelo täyttyy automaattisesti useista lähteistä kerätyn tiedon perusteella: DHT:n raportoimat naamioituneet vertaiset, ystäviesi raportoimat ja itse antamasi IP-avaruudet.</p><p>Naamioituneiden IP-osoitteiden automaattinen arvaaminen saattaa viedä ystäväsi estettyjen luetteloon. Tällaisissa tapauksissa voit käyttää pikavalikkoa lisätäksesi heidät sallittuihin.</p></body></html> @@ -19237,7 +19104,7 @@ If you have issues connecting over Tor check the Tor logs too. Ban every IP reported by your friends - + Laita jokainen ystäviesi raportoima IP pannaan @@ -19247,42 +19114,42 @@ If you have issues connecting over Tor check the Tor logs too. Ban every masquerading IP reported by your DHT - + Laita jokainen DHT:n rapoirtoima naamioituva IP pannaan <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Automaattisesti aseta pannaan DHT:n naamioivat IP:t alkaen Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + <html><head/><body><p>Määritä Tor and I2P SOCKS-välityspalvelin tässä. <br/>Jos käytät mieluummin BOB:a automaattisesti hallitaksesi I2P tarkista toinen välilehti.</p></body></html> Tor Socks Proxy - + Tor SOCKS-välityspalvelin Tor outgoing Okay - + Tor lähtevä ok Tor proxy is not enabled - + Tor-välityspalvelin ei ole käytössä @@ -19305,7 +19172,7 @@ If you have issues connecting over Tor check the Tor logs too. Auto-download recommended files - + Lataa automaattisesti suositellut tiedostot @@ -19333,12 +19200,12 @@ If you have issues connecting over Tor check the Tor logs too. hide offline - + piilota ei linjoilla <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;Käyttöoikeudet</h1> <p>Käyttöoikeudet antavat sinun hallita mitkä palvelut ovat käytettävissä millekin ystäville.</p> <p>Jokainen katkaisin näyttää kaksi valoa, ilmaisten mikäli sinä tai ystäväsi olette sallineet kyseisen palvelun. Kummankin niistä pitää olla PÄÄLLÄ (näkyen <img height=20 src=":/images/switch11.png"/>) antaakseen informaation siirtyä tiettyyn palvelu/ystävä-yhdistelmään.</p> <p>Jokaiselle palvelulle, yleiskytkin <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> sallii sinun kytkeä palvelun PÄÄLLE/POIS kaikille ystäville samaan aikaan.</p> <p>Ole hyvin varovainen: Jotkin palvelut ovat riippuvaisia toisistaan. Esimerkiksi Turtlen kytkeminen POIS pysäyttää myös kaikki nimettömät siirrot, etäiset keskustelut ja etäiset viestit.</p> @@ -19354,7 +19221,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + Asetukset @@ -19378,7 +19245,7 @@ If you have issues connecting over Tor check the Tor logs too. 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. - + @@ -19386,7 +19253,7 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - RetroSharen jakamisten hallinta + Retrosharen jakamisten hallinta @@ -19396,32 +19263,32 @@ Select the Friends with which you want to Share your Channel. Shared directory - + Jaettu hakemisto Visible name - + Näkyvä nmi Access - + Pääsy Visibility - Näkyvyys + Näkyvyys Add new - + Lisää uusi Cancel - Peru + Peruuta @@ -19446,52 +19313,52 @@ Select the Friends with which you want to Share your Channel. Choose directory - Valitse hakemisto + Valitse hakemisto Change group visibility... - + Muuta ryhmän näkyvyyttä... Choose directory to share... - + Valitse jaettava hakemisto... Choose visible name... - + Valitse näkyvä nimi... [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Kaksoisnapsauta valitaksesi mitkä ystäväryhmät voivat nähdä tiedostot Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + [Kaikki ystäväsolmut] @@ -19506,7 +19373,7 @@ Select the Friends with which you want to Share your Channel. Choose a directory to share - + @@ -19540,11 +19407,7 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - - - - Search files - Hae tiedostoja + @@ -19604,35 +19467,27 @@ Select the Friends with which you want to Share your Channel. Copy retroshare Links to Clipboard - Kopioi RetroShare-linkit leikepöydälle + Kopioi Retroshare-linkit leikepöydälle Copy retroshare Links to Clipboard (HTML) - Kopioi RetroShare-linkit leikepöydälle (HTML) + Kopioi Retroshare-linkit leikepöydälle (HTML) Send retroshare Links - Lähetä RetroShare-linkit - - - Send retroshare Links to Cloud - Lähetä RetroShare-linkit pilveen - - - Add Links to Cloud - Lisää linkit pilveen + Lähetä Retroshare-linkit Some files have been omitted - + Jotkin tiedostot on jätetty pois RetroShare Link - RetroShare-linkki + Retroshare-linkki @@ -19663,17 +19518,17 @@ Select the Friends with which you want to Share your Channel. Some files have been omitted because they have not been indexed yet. - + Jotkin tiedostot on jätetty pois koska niitä ei ole luetteloitu vielä. Search string should be at least 3 characters long. - + Hakumerkkijonon pitää olla vähintään 3 merkkiä pitkä. More than 3000 results. Add more/longer search words to select less. - + Yli 3000 tulosta. Lisää enemmän/pidempiä sanoja valitaksesi vähemmän. @@ -19681,48 +19536,48 @@ Select the Friends with which you want to Share your Channel. Friend - Ystävä + Ystävä Go Online - + Tulee linjoille Chatmessage - + Keskusteluviesti New Msg - + Uusi viesti Message - Viesti + Viesti Message arrived - + Viesti saapunut Download - Lataa + Lataa Download complete - + Lataus suoritettu Lobby - + Huone @@ -19765,7 +19620,7 @@ Select the Friends with which you want to Share your Channel. Default - Oletus + Oletus @@ -19773,20 +19628,16 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Ääni on pois päältä, napsauta tästä se päälle Sound is on, click to turn it off - + Ääni on päällä, napsauta tästä se pois päältä SplashScreen - - Load profile - Avaa profiili - Load configuration @@ -19803,17 +19654,13 @@ Select the Friends with which you want to Share your Channel. RetroShare - RetroShare - - - Login - Kirjaudu + Retroshare Password - Salasana + Salasana @@ -19839,9 +19686,13 @@ Ei vaikuta nykyisiin identiteetteihin/sijainteihin. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</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:'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;">Uusi profiili/solmu</span></a></p></body></html> @@ -19856,7 +19707,7 @@ p, li { white-space: pre-wrap; } Wrong password - + Väärä salasana @@ -19872,7 +19723,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19881,7 +19732,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19890,7 +19741,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19964,17 +19815,17 @@ This choice can be reverted in settings. Turtle Router - + Turtle-reititin Global Router - + Yleisreititin Gxs Transport - + Gxs liikenne @@ -19988,7 +19839,7 @@ This choice can be reverted in settings. Offline - Offline + Ei yhteyttä @@ -20013,7 +19864,7 @@ This choice can be reverted in settings. Friend is offline - Ystävä on offline + Ystävä ei ole linjoilla @@ -20081,7 +19932,7 @@ This choice can be reverted in settings. Connected: I2P - + Yhdistetty: I2P @@ -20096,57 +19947,57 @@ This choice can be reverted in settings. TCP-in - + TCP-out - + inbound connection - + saapuva yhteys outbound connection - + lähtevä yhteys UDP - + UDP Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + tuntematon Connected: Tor - + Yhdistetty: Tor @@ -20166,7 +20017,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20179,7 +20030,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20275,7 +20126,7 @@ p, li { white-space: pre-wrap; } Remove this item - + Poista tämä kohde @@ -20342,7 +20193,7 @@ p, li { white-space: pre-wrap; } Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki @@ -20430,58 +20281,58 @@ p, li { white-space: pre-wrap; } Dialog - Dialogi + Ikkuna Setting up Tor... - + Muodostetaan Tor-yhteys... Tor status: - + Tor-tila: Unknown - Tuntematon + Tuntematon Not started - + Ei käynnistynyt Hidden service address: - + Piilotetun palvelun osoite: Tor bootstrap status: - + Not set - + Ei asetettu Onion address: - + Onion-osoite: Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + [Odotetaan Tor...] @@ -20489,28 +20340,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + <p>Tämä Retrosharen versio käyttää Tor-verkkoa yhdistääkseen ystäviisi.</p> Tor is currently offline - + Tor ei ole nyt linjoilla Tor is OK - + Tor on OK No tor configuration - + Ei tor-asetuksia @@ -20528,98 +20379,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Jaetut hakemistot Automatically share incoming directory (Recommended) - Jaa saapuvien hakemisto automaattisesti (suositeltavaa) + Jaa saapuvien hakemisto automaattisesti (suositeltavaa) Edit Share - + Muokkaa jakoa Auto-check shared directories every - + Tarkista jaetut hakemistot automaattisesti joka minute(s) - + minuutti <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + <html><head/><body><p>Ohjeista Retrosharea seuraamaan linkkejä. Silmukat ja kaksoistiedostot hoidetaan automaattisesti. Jos valitsematon, Retroshare sivuuttaa symboliset linkin niin tiedostoihin kuin hakemistoihin.</p></body></html> follow symbolic links - + seuraa symbolisia linkkejä <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Sivuuta kaksoistiedostot/hakemistot Maximum depth (0=unlimited): - + Enimmäissyvyys (0=rajoittamaton) <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + Sivuuta tiedostot, jotka päättyvät: <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + Sivuuta tiedostot, jotka alkavat: <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Saapuvien hakemisto Browse - Selaa + Selaa Partials Directory - + Keskeneräisten hakemisto Maximum uploads per friend (0 = no limit) - + Enimmäislähetykset ystävää kohden (0 = ei rajaa) @@ -20634,12 +20485,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Päästä-päähän salaus: Allow direct download: - + Salli suora lataaminen: @@ -20664,50 +20515,58 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + <html><head/><body><p>Nimettömät tunnelit voivat olla päästä-päähän salattuja. Taaksepäin yhteensopivuuden säilyttämiseksi, tästä voidaan tehdä valinnaista (valiten &quot;Sallittu&quot;), mutta loppujen lopuksi, kaikkien Retroshare-solmujen pitää vaihtaa&quot;Pakollinen&quot;, tehden kaikista nimettömistä siirroista päästä-päähän salattuja. &quot;Sallittu&quot; ollessa käytössä, on todennäköistä, että siirrät kaksinkertaista tunneleiden määrää käyttäen, koska ei ole mahdollista erottaa mikäli salattu ja salaamatonta tunneli siirtävät samasta lähteestä.</p></body></html> Accepted - + Hyväksytty Enforced - + Pakollinen <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + <html><head/><body><p>Kuinka RS hallitsee suoran latauksen asetuksia.</p></body></html> Yes - Kyllä + Kyllä No - Ei + Ei Per user - + Käyttäjää kohden <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Retroshare</span><span style=" font-size:8pt;"> kykenee siirtämään dataa ja etsimään hakuja vertaisten välillä, jotka eivät välttämättä ole ystäviä. Tämä liikenne kaikesta huolimatta kauttakulkee ainoastaan yhdistettynä ystäväluettelelossa olevien kautta ja on nimetöntä.</span></p> +<p style="-qt-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;"><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-size:8pt;">Sinä voit erikseen asettaa jakoilmaisimia jokaiselle jaetulle hakemistolle Jaetut tiedostot-ikkunassa:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ystävien selattavissa</span>: tiedostot, jotka näkyvät ystäville.</li> +<li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Nimettömästi jaetut</span>: tiedostot, jotka ovat nimettömästi saatavissa etäisten F2F-tunneleitten kautta.</li></ul></body></html> @@ -20717,32 +20576,32 @@ 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>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 keskeyttää kaikki siirrot ja asetustiedoston tallennukset, jos levytila menee alle tämän rajoituksen. Se estää tiedon häviämisen joissakin järjestelmissä. Ponnahdusikkuna varoittaa sinua, kun näin käy.</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> - + Set Incoming Directory - + Aseta saapuvien hakemisto Set Partials Directory - + Aseta keskeneräisten hakemisto Files - Tiedostot + Tiedostot @@ -20804,21 +20663,6 @@ p, li { white-space: pre-wrap; } Completed Valmis - - Speed - i.e: Download speed - Nopeus - - - Progress / Availability - i.e: % downloaded - Edistyminen / saatavuus - - - Sources - i.e: Sources - Lähteet - Status @@ -20834,16 +20678,6 @@ p, li { white-space: pre-wrap; } Remaining Jäljellä - - Download time - i.e: Estimated Time of Arrival / Time left - Latausaika - - - Peer - i.e: user name - Vertainen - Progress @@ -20898,7 +20732,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Vertainen + Vertainen @@ -20945,12 +20779,12 @@ p, li { white-space: pre-wrap; } Copy RetroShare Link - Kopioi RetroShare-linkki + Kopioi Retroshare-linkki Paste RetroShare Link - Liitä RetroShare-linkki + Liitä Retroshare-linkki @@ -21020,7 +20854,7 @@ 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> - + @@ -21047,92 +20881,26 @@ p, li { white-space: pre-wrap; } Choose directory Valitse hakemisto - - Failed - Epäonnistunut - - - Okay - OK - - - Waiting - Odotetaan - - - Downloading - Ladataan - - - Complete - Valmis - - - Queued - Jonossa - - - Paused - Tauolla - - - Checking... - Tarkistaa... - - - Unknown - Tuntematon - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Jos ladatun tiedon tiiviste (hash) ei -vastaa lähteen -ilmoittamaa, tiedot ovat -todennäköisesti vioittuneet. - -RetroShare pyytää lähteeltä yksityiskohtaista -karttaa tiedosta; se vertaa ja poistaa -huonoja kohtia ja lataa ne uudestaan - -Kärsivällisyyttä! - - - Transferring - Siirretään - - - Uploading - Lähetetään - Anonymous end-to-end encrypted tunnel 0x - + Nimetön päästä-päähän salattu tunneli 0x Tunnel - + Tunneli Are you sure that you want to cancel and delete these files? - Oletko varma, että haluat perua ja tuhota nämä tiedostot? + Oletko varma, että haluat perua ja poistaa nämä tiedostot? RetroShare - RetroShare + Retroshare @@ -21182,15 +20950,6 @@ Kärsivällisyyttä! Please enter a new--and valid--filename Kirjoita uusi ja validi tiedostonimi - - Last Time Seen - i.e: Last Time Receiced Data - Viimeksi nähty - - - UserID - Käyttäjätunniste - @@ -21298,11 +21057,6 @@ Kärsivällisyyttä! File Transfers Tiedostojen siirrot - - Path - i.e: Where file is saved - Polku - Path @@ -21346,17 +21100,17 @@ Kärsivällisyyttä! %1 tunnels - + %1 tunnelia Anonymous tunnel 0x - + Nimetön tunneli 0x Files - Tiedostot + Tiedostot @@ -21388,7 +21142,7 @@ Kärsivällisyyttä! Empty - + Tyhjä @@ -21399,7 +21153,7 @@ Kärsivällisyyttä! Friends Directories [updating...] - + Ystävien hakemistot [päivitetään...] @@ -21409,7 +21163,7 @@ Kärsivällisyyttä! My Directories [updating...] - + Omat hakemistot [päivitetään...] @@ -21419,7 +21173,7 @@ Kärsivällisyyttä! # Files - + # Tiedostot @@ -21439,22 +21193,22 @@ Kärsivällisyyttä! Access - + Pääsy Visibility - Näkyvyys + Näkyvyys Column %1 - + Sarake %1 Row %1 - + Rivi %1 @@ -21503,7 +21257,7 @@ Kärsivällisyyttä! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Tunnistetta pyydetty: %1 %3 sek sitten %2 taholta %4 (%5 osumaa) @@ -21549,12 +21303,12 @@ Kärsivällisyyttä! Anonymous tunnels - + Nimettömiä tunneleita Authenticated tunnels - + Varmennettuja tunneleita @@ -21564,7 +21318,7 @@ Kärsivällisyyttä! Turtle Router - + Turtle-reititin @@ -21582,7 +21336,7 @@ Kärsivällisyyttä! Turtle router traffic - Kilpikonnareitittimen liikenne + Turtle-reitittimen liikenne @@ -21612,7 +21366,7 @@ Kärsivällisyyttä! Forwarded data - + Välitetty data @@ -21741,57 +21495,57 @@ Kärsivällisyyttä! Enable Retroshare WEB Interface - + Salli Retroshare-verkkokäyttöliittymä Web parameters - + Verkkoparametrit Port: - Portti: + Portti: Allow access from all IP addresses (Default: localhost only) - + Salli pääsy kaikista IP-osoitteista (Oletus: sisäinen verkkoliityntä ainoastaan) Apply setting and start browser - + Käytä asetusta ja käynnistä selain Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + Huomautus: nämä asetukset eivät vaikuta retroshare-nogui:n. Retroshare-nogui:ssa on komentorivivalitsin verkkokäyttöliittymän aktivoimiseksi. <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;Verkkokäyttöliittymä</h1> <p>Verkkokäyttöliittymä sallii sinun hallita Retrosharea selaimestasi. Lukuisat laitteet voivat jakaa yhden Retroshare-instanssin hallinnan. Voit aloittaa keskustelun tabletillasi ja myöhemmin käyttää pöytäkonetta sitä jatkaaksesi.</p> <p>Varoitus: älä paljasta verkkokäyttöliittymää internetille, sillä siihen ei ole mitään käytönhallintaa eikä salausta. Jos haluat käyttää verkkokäyttöliittymää internetin kautta, käytä SSH-tunnelia tai välityspalvelinta yhteyden suojaamiseen.</p> Webinterface not enabled - + Verkkokäyttöliittymä ei ole käytössä The webinterface is not enabled. Enable it in Settings -> Webinterface. - + Verkkokäyttöliittymä ei ole käytössä. Salli se Asetukset -> Verkkokäyttöliittymä. failed to start Webinterface - + verkkokäyttöliittymän käynnistys epäonnistui Webinterface - + Verkkokäyttöliittymä @@ -22412,7 +22166,7 @@ Kärsivällisyyttä! Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + Kuvat (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) @@ -22420,134 +22174,134 @@ Kärsivällisyyttä! Do you accept connections signed by this profile? - + Hyväksytkö tämän profiilin allekirjoittamat yhteydet? Name of the profile - + Profiilin nimi This column indicates trust level and whether you signed the profile PGP key - + Tämä sarake osoittaa luottamustason ja mikäli olet allekirjoittanut profiilin PGP-avaimen. Did that peer sign your own profile PGP key - + Allekirjoittiko vertainen sinun oman profiilisi PGP-avaimen PGP Key Id of that profile - + Sen profiilin PGP-avaintunniste Last time this key was used (received time, or to check connection) - + Viime kerta kun tätä avainta käytettiin (vastaanotettu aika, tai tarkista yhteys) Connections - + Yhteydet Profile - + Profiili Trust level - + Luottamustaso Has signed your key? - + On allekirjoittanut avaimesi? Id - + Tunniste Last used - Viimeksi käytetty + Viimeksi käytetty Personal signature - Henkilökohtainen allekirjoitus + Henkilökohtainen allekirjoitus Marginally trusted peer - Rajallisesti luotettu vertainen + Rajallisesti luotettu vertainen Fully trusted peer - Täysin luotettu vertainen + Täysin luotettu vertainen Untrusted peer - Ei-luotettu vertainen + Ei-luotettu vertainen Yes - Kyllä + Kyllä No - Ei + Ei Last hour - Viime tuntina + Viimeisin tunti Today - Tänään + Tänään Never - Ei koskaan + Ei koskaan %1 days ago - %1 päivää sitten + %1 päivää sitten Accepted - + Hyväksytty - - + - PGP key signed by you - Olet allekirjoittanut PGP-avaimen + Olet allekirjoittanut PGP-avaimen has authenticated you. Right-click and select 'make friend' to be able to connect. - on varmentanut sinut. -Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden. + has authenticated you. +Right-click and select 'make friend' to be able to connect. - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_fr.qm b/retroshare-gui/src/lang/retroshare_fr.qm index abda90b0b..c7079445d 100644 Binary files a/retroshare-gui/src/lang/retroshare_fr.qm and b/retroshare-gui/src/lang/retroshare_fr.qm differ diff --git a/retroshare-gui/src/lang/retroshare_fr.ts b/retroshare-gui/src/lang/retroshare_fr.ts index 41c407c52..fbdf59c40 100644 --- a/retroshare-gui/src/lang/retroshare_fr.ts +++ b/retroshare-gui/src/lang/retroshare_fr.ts @@ -1,6 +1,4 @@ - - - + AWidget @@ -81,7 +79,7 @@ Only Hidden Node - + Nœud caché seulement @@ -116,7 +114,7 @@ - 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 @@ -206,7 +204,7 @@ Holiday - Vacance + Vacances @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -935,12 +933,12 @@ Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à Average - Normale + Moyenne Total - + Total @@ -1061,17 +1059,17 @@ Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à Legend: - + Légende: Current - + Actuel Total - + Total @@ -1109,10 +1107,6 @@ Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à ChatLobbyDialog - - Participants - Participants - Name @@ -1168,10 +1162,6 @@ Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à Topic: %1 Sujet : %1 - - Lobby management - Gestionnaire du salon - %1 changed his name to: %2 @@ -1278,7 +1268,7 @@ Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à Chat room management - + Information: @@ -1386,11 +1376,11 @@ Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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 fonctionnent à peu près comme IRC.. Ils vous permettent de discuter anonymement avec de nombreuses personnes sans avoir besoin d'être des amis. + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Salons de tchat</h1> <p>Les salons de tchat fonctionnent à peu près comme l'IRC. Ils vous permettent de discuter anonymement avec de nombreuses personnes sans avoir besoin d'être des amis. -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. +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 aurez été invité à un salon privé, vous serez capable de le voir lorsque vos amis l'utiliseront. -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> +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> @@ -1415,17 +1405,17 @@ La liste à gauche montre les salons de tchat auxquels vos amis participent. Vou Enter this chat room - Entrer dans cet salon + Entrer dans ce salon Enter this chat room as... - Entrer dans cette salle en tant que... + Entrer dans ce salon en tant que... Copy RetroShare Link - Copier le lien Retroshare + Copier le lien RetroShare @@ -1452,9 +1442,9 @@ La liste à gauche montre les salons de tchat auxquels vos amis participent. Vou No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - Aucun salon de tchat sélectionnée. -Sélectionnez les salons de tchat à gauche pour afficher les détails. -Double-cliquez sur un salon pour entrer et discuter. + Aucun salon de tchat sélectionné. +Sélectionnez un des salons de tchat à gauche pour en afficher les détails. +Double-cliquez sur un salon pour y entrer et discuter. @@ -1464,7 +1454,7 @@ Double-cliquez sur un salon pour entrer et discuter. Choose a non anonymous identity for this chat room: - + Choisissez une identité anonyme pour de salon de tchat. @@ -1555,7 +1545,7 @@ Double-cliquez sur un salon pour entrer et discuter. Chat room Id: - Id du salon de chat : + ID du salon de chat : @@ -1825,14 +1815,14 @@ Double-cliquez sur un salon pour entrer et discuter. Style: - Style : + Style : Variant: - Variante : + Variante : @@ -1849,7 +1839,7 @@ Double-cliquez sur un salon pour entrer et discuter. Choose your default font for Chat. - + Choisissez votre police de caractère par défaut pour les tchats. @@ -1906,10 +1896,6 @@ Double-cliquez sur un salon pour entrer et discuter. /me is sending a message with /me /me envoie un message avec /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> @@ -2018,7 +2004,7 @@ Double-cliquez sur un salon pour entrer et discuter. Chats - Tchats + Tchats @@ -2110,7 +2096,7 @@ Double-cliquez sur un salon pour entrer et discuter. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2231,7 +2217,7 @@ après la conversion en HTML. Choose your font. - + Choisissez votre police de caractère. @@ -2266,11 +2252,7 @@ après la conversion en HTML. Messages you send will be delivered after Friend is again Online. - - - - 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 transmis après la reconnexion de votre ami. @@ -2358,18 +2340,19 @@ après la conversion en HTML. Person id: - + Id d'identité: Double click on it to add his name on text writer. - + +Double cliquez pour ajouter son nom dans le champ de saisie du message. Unsigned - + Non signé @@ -2554,10 +2537,6 @@ Double click on it to add his name on text writer. Details Détails - - Peer Address - Adresses IP du contact - @@ -2572,12 +2551,12 @@ Double click on it to add his name on text writer. Node info: - + Information du nœud: Current address: - + Adresse courante: @@ -2590,10 +2569,6 @@ Double click on it to add his name on text writer. Port Port : - - Addresses list - Liste d'adresses IP connues: - Include signatures @@ -2623,19 +2598,11 @@ Double click on it to add his name on text writer. Not connected Non connecté - - Peer Addresses - Adresses des contacts - Retroshare node details Détails de noeud Retroshare - - Friend info - Info d'ami - Node name : @@ -2664,7 +2631,7 @@ Double click on it to add his name on text writer. Name: - Nom : + Nom : @@ -2674,11 +2641,7 @@ Double click on it to add his name on text writer. List of known addresses: - - - - Connectivity - Connectivité + Liste des adresses connues: @@ -2768,7 +2731,8 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &Envoyer une invitation par Mail +(Votre ami recevra un mail avec les instruction pour télécharger RetroShare) @@ -2794,12 +2758,12 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Ouvrir le certificat de votre ami depuis un fichier Open certificate - + Ouvrir le certificat @@ -3026,12 +2990,6 @@ resources. &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 @@ -3223,31 +3181,33 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Attention: Dans vos Préférences de Fichiers, vous avez autorisez le téléchargement direct pour tous. Warning: In your File-Transfer option, you select allow direct download to No. - + +Attention: Dans vos Préférences de Fichiers, vous avez interdit le téléchargement direct pour tous. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + C'est votre propre certificat! Vous ne voulez pas devenir ami avec vous même. N'est-ce pas? This key is already on your trusted list - + Cette clé est déjà dans votre liste de confiance. You have already signed this key - + Vous avez déjà signé cette clé. @@ -3608,13 +3568,21 @@ contact même si vous n'êtes pas 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lucida Grande'; font-size:13pt;">Ce widget affiche la progression de la connexion à votre nouveau pair.</span></p> +<p 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;">C'est utile pour résoudre des problèmes.</span></p> +<p style="-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;"><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:'Lucida Grande'; font-size:13pt;">Si vous êtes un utilisateur expert de RS ou que vous faites confiance en lui</span></p> +<p 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 fermer la fenêtre.</span></p></body></html> @@ -3978,26 +3946,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate 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> -<p 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;">Ce widget affiche la progression de votre connexion à votre nouveau contact</span></p> -<p 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;">Il est pratique pour résoudre les problèmes</span></p> -<p style="-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;">Si vous êtes un utilisateur expérimenté, ou pensez que RS fera la bonne action</span></p> -<p 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> - @@ -4060,12 +4008,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>Le nom du cercle, le contact de l'auteur et la liste des membres invités sera visible à tous les invités. Si le cercle n'est pas privé, ils seront également visibles aux nœuds voisins de ceux qui hébergent les invités.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + <html><head/><body><p>Renseigner le créateur d'un cercle est purement facultatif. Il est cependant utile, pour les cercles publics, afin que les gens sachent avec qui discuter des aspects de l'adhésion.</p></body></html> @@ -4118,19 +4066,11 @@ p, li { white-space: pre-wrap; } Name: Nom : - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - <html><head/><body><p>Le nom du cercle, prenez contact avec l'auteur et la liste des membres invités sera visible à tous les membres invités. Si le cercle n'est pas privé, il sera aussi visible aux noeuds voisins des noeuds qui accueillent les membres invités.</p></body></html> - Contact author: Contacter l'auteur : - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - <html><head/><body><p>Le créateur d'un cercle est purement facultatif. C'est cependant utile pour des cercles publics afin que les gens sachent avec qui discuter des aspects d'adhésion.</p></body></html> - [Circle Admin] @@ -4341,9 +4281,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4465,7 +4405,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Modifier la publication de la chaîne @@ -4524,7 +4464,7 @@ p, li { white-space: pre-wrap; } Edit Message - + Modifier le message @@ -4556,13 +4496,14 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Annuler le message du Forum Forum Message has not been sent yet! Do you want to discard this message? - + Le message n'a pas encore été envoyé! +Voulez-vous annuler ce message? @@ -4595,16 +4536,6 @@ Do you want to discard this message? Send Envoyer - - Forum Message - 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é. -Voulez-vous rejeter ce message ? - Post as @@ -4914,17 +4845,17 @@ Voulez-vous rejeter ce message ? Faster - Rapide + Rapide Average - Normale + Moyen Slower - Basse + Lent @@ -5855,7 +5786,7 @@ Voulez-vous rejeter ce message ? # Files - + # de Fichiers @@ -5885,12 +5816,12 @@ Voulez-vous rejeter ce message ? Column %1 - + Colonne %1 Row %1 - + Ligne %1 @@ -5910,10 +5841,6 @@ Voulez-vous rejeter ce message ? Expand new messages Développer les nouveaux messages - - Forum - Forum - Load embedded images @@ -5942,7 +5869,7 @@ Voulez-vous rejeter ce message ? Forums - Forums + Forums @@ -5956,7 +5883,7 @@ Voulez-vous rejeter ce message ? ID - ID + ID @@ -6045,7 +5972,7 @@ Voulez-vous rejeter ce message ? Search ID - Chercher ID + Chercher ID @@ -6187,10 +6114,6 @@ au moins un contact n'a pas été ajouté au groupe Error Erreur - - Failed to get a file! - Échec de la récupération du fichier ! - File is not writeable! @@ -6332,7 +6255,7 @@ au moins un contact n'a pas été ajouté au groupe Filter only connected - + Filtrer seulement les connectés @@ -6495,14 +6418,6 @@ au moins un contact n'a pas été ajouté au groupe 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) - - - [Required] Type the same password again here. - [Obligatoire] Saisissez le même mot de passe ici. - Passwords do not match @@ -6516,7 +6431,7 @@ au moins un contact n'a pas été ajouté au groupe Use BOB - + Utiliser BOB @@ -6524,68 +6439,30 @@ au moins un contact n'a pas été ajouté au groupe This password is for PGP Ce mot de passe est pour PGP - - Generate new node - Générer 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 - Node field is required with a minimum of 3 characters Le champ noeud est exigé avec un minimum de 3 caractères - - Generating new node key, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. - -Fill in your password when asked, to sign your new key. - En générant une nouvelle clé, soyez patient : ce processus nécessite de générer de gros nombres premiers et peut prendre quelques minutes sur des ordinateurs lents. - -Saisissez votre mot de passe lorsque vous y êtes invité, pour signer votre nouvelle clé. - 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 ! - - <html><head/><body><p>Use this if you need to import an existing profile, if you want to generate a new node with an already existing key, or if you want to create a TOR/I2P hidden node.</p></body></html> - <html><head/><body><p>Utilisez cette option si vous souhaitez importer un profil existant, si vous souhaitez générer un nouveau emplacement avec une clé existante ou si vous souhaitez créer un emplacement caché TOR / I2P.</p></body></html> - - - 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" - - - 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. - - - No node exists for this profile. - Aucun noeud n'existe pour ce profil. - Options - Options + Options PGP Key Length - + Longueur de la clé PGP @@ -6616,7 +6493,7 @@ Autrement vous pouvez utiliser un profil existant. Il vous suffit de décocher & Use existing profile - + Utiliser un profil existant @@ -6635,22 +6512,6 @@ Vous pouvez créer plusieurs emplacement Retroshare avec le même profil sur dif Export this profle Exporter ce profil - - Re-use an existing profile - Réutiliser un profil existant - - - Profile name - Nom de profil - - - Randomness - Données aléatoires - - - Node type - Type d'emplacement - <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> @@ -6660,10 +6521,6 @@ Pour en obtenir une, vous devez configurer Tor ou I2P pour créer un nouveau tun Vous pouvez également laisser ce champ vide, mais votre nœud ne fonctionnera que si vous définissez correctement l'adresse de service Tor / I2P dans le panneau de configuration Préférences -&gt; Réseaux -&gt; Configuration Hidden Service.</p></body></html> - - Chat identity - Identité de tchat - <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> @@ -6679,7 +6536,7 @@ Ils reçoivent/envoient également du courrier électronique sur le réseau Retr TextLabel - Etiquette + Étiquette @@ -6702,25 +6559,11 @@ Ils reçoivent/envoient également du courrier électronique sur le réseau Retr <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 - Click to create your node and/or profile Cliquez pour créer votre noeud et/ou profil - - Generate new profile and node - Générer un nouveau profil et noeud - - - 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" - Export profile @@ -6765,26 +6608,6 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerImport profile Importer profil - - [Required] Examples: Home, Laptop,...(Visible to friends). - [Requis] Exemples: Maison, Ordinateur portable, ... (Visible pour les amis). - - - [Optional] Tor/I2P address (Example: xa76giaf6ifda7ri63i263.onion) - [Facultatif] Adresse Tor/I2P (Exemple: xa76giaf6ifda7ri63i263.onion) - - - [Required] Visible to friends, and friends of friends. - [Requis] Visible pour les amis et les amis des amis. - - - [Optional] Used to write in chat rooms and forums. Can be set later. - [Facultatif] Utilisé pour écrire dans des salons de tchat et des forums. Peut être configuré plus tard. - - - [Required] This password protects your data. Dont forget it! - [Requis] Ce mot de passe protège vos données. Ne l'oubliez pas! - Create new profile and new Retroshare node @@ -6795,54 +6618,50 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerCreate new Retroshare node Créer un nouveau emplacement Retroshare - - Disabled until all fields correctly set and enough randomness collected. - Désactivé jusqu'à ce que tous les champs soient correctement définis et que la collecte des données aléatoires soient effectuées. - Tor/I2P address - + Adresse Tor/I2P Username - + Nom d'Utilisateur Chat name - + Nom du tchat : Password again - + Mot de passe une nouvelle fois <p>Node creation is disabled until all fields correctly set.</p> - + <p>La création du nœud est désactivée jusqu'à ce que les champs soient correctement remplis.</p> <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + <p>La création du nœud est désactivée jusqu'à ce que suffisamment d'éléments aléatoires soient collectés. Veuillez déplacer votre souris jusqu'à ce que vous atteigniez au moins 20%.</p> I2P instance address with BOB enabled - + Adresse d'instance I2P avec BOB activé I2P instance address - + Adresse d'instance I2P hidden service address - + adresse du service caché @@ -6879,10 +6698,6 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerThe GXS nickname is too long. Please reduce the length to %1 characters. Le surnom GXS est trop long. Veuillez réduire la longueur à %1 caractères. - - 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 - @@ -6962,7 +6777,7 @@ et l'utiliser au moyen du bouton d'importation afin de le charger When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - Lorsque coché, ce cas reçoit de nouveaux paramètres (comme RsLink ou RsFile) et évite un nouveau. + Lorsque coché, cette instance reçoit de nouveaux paramètres (comme RsLink ou RsFile) et évite une nouvelle. @@ -6972,7 +6787,7 @@ et l'utiliser au moyen du bouton d'importation afin de le charger <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - <html><head/><body><p>Installer RetroShare avec un gestionnaire de paquets afin d'obtenir </p><p>/usr/share/applications/retroshare.desktop</p></body></html> + <html><head/><body><p>Installez RetroShare avec un gestionnaire de paquets pour avoir le fichier:</p><p>/usr/share/applications/retroshare.desktop</p></body></html> @@ -6994,23 +6809,15 @@ et l'utiliser au moyen du bouton d'importation afin de le charger seconds secondes - - You have enough right. - Vous avez suffisamment de droits. - - - You don't have enough right. Run RetroShare as Admin to change this setting. - Vous n'avez pas suffisamment de droits. Exécutez RetroShare en tant qu'admin afin de modifier ce paramètre. - You have sufficient rights. - + Vous avez assez de droits. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + Vous n'avez pas assez de droits. Démarrez RetroShare comme Administrateur pour changer ces paramètres. @@ -7068,7 +6875,7 @@ et l'utiliser au moyen du bouton d'importation afin de le charger<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7096,28 +6903,12 @@ p, li { white-space: pre-wrap; } Add Friends 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 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;">Quand vos amis vous envoient leurs invitations, cliquez pour ouvrir la fenêtre 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-size:12pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Collez les &quot;Certificats ID&quot; de vos amis dans la fenêtre puis ajoutez-les comme amis.</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> @@ -7150,14 +6941,14 @@ 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: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"> @@ -7179,7 +6970,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:'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> @@ -7219,11 +7010,17 @@ 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: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 Friends' &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;">Quand vos amis vous envoient leurs invitations, cliquez pour ouvrir la fenêtre 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-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Collez les &quot;Certificats ID&quot; de vos amis dans la fenêtre puis ajoutez-les comme amis.</span></p></body></html> @@ -7331,7 +7128,7 @@ p, li { white-space: pre-wrap; } GroupBox - + GroupBox @@ -7516,7 +7313,7 @@ p, li { white-space: pre-wrap; } Only visible to friend nodes in groups: %1 - Seulement visible par les amis de ces groupes: %1 + Seulement visible par les amis de ces groupes : %1 @@ -7655,11 +7452,7 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - - - - Sort by Posts - Trier par quantité de messages + Trier par quantité de messages @@ -8042,7 +7835,7 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des New Comment: - Nouveau commentaire : + Nouveau commentaire : @@ -8074,7 +7867,7 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des Edit - Modifier + Modifier @@ -8156,7 +7949,7 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des Comments - + Commentaires @@ -8185,7 +7978,7 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des Add new post - + Ajouter une nouvelle publication @@ -8342,48 +8135,48 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des Details - Détails + Détails Remove Item - + Supprimer for identity - pour identité + pour l'identité You received a membership request for circle: - + Vous avez reçu une demande d'adhésion pour le cercle: Grant membership request - + Demande d'adhésion Revoke membership request - + Révoquer la demande d'adhésion You received an invitation for circle: - + Vous avez reçu une invitation pour le cercle: Accept invitation - + Accepter l'invitation Received event from unknown Circle: - + Évènement reçu d'un cercle inconnu: @@ -8477,7 +8270,7 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des Copy Comment - + Copier le commentaire @@ -8502,7 +8295,7 @@ Les publications sont conservés pendant %1 jours et synchronisés au cours des <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8680,7 +8473,7 @@ avant de pouvoir commenter New Thread - Nouveau fil + Nouveau fil @@ -8971,7 +8764,7 @@ Ensuite vous pourrez vous désabonner via le menu contextuel de la liste des for New thread - + Nouveau fil @@ -8981,7 +8774,7 @@ Ensuite vous pourrez vous désabonner via le menu contextuel de la liste des for Edit - Modifier + Modifier @@ -9081,12 +8874,12 @@ prevents the message to be forwarded to your friends. (Latest) - + (Derniers) (Old) - + (Anciens) @@ -9250,10 +9043,6 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours de Message Distribution Distribution de message - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - <html><head/><body><p>Les messages se diffuseront le long de vos noeuds amis, aussi longtemps que des gens seront abonnés la chaîne/forum/chose postée que vous créez.</p></body></html> - @@ -9262,10 +9051,6 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours de Public Public - - Only For Your Friends - Seulement pour vos amis - Publish Signatures @@ -9341,7 +9126,7 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours de TextLabel - Etiquette + Étiquette @@ -9461,7 +9246,7 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours de <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Les messages se propageront bien au-delà de vos nœuds amis, à condition que les gens s'abonnent à la chaîne, au forum ou à la publication que vous créez.</p></body></html> @@ -9481,7 +9266,7 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours de Restricted node group - + Limité au groupe d'ami (Nœuds) @@ -9746,107 +9531,107 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours de Router Statistics - + Statistiques de routage GroupBox - + GroupBox ID - ID + ID Destination - Destination + Destination Data status - Statut données + Statut données Data size - + Taille données Data hash - Hash données + Hachage des données Sending time (secs ago) - Heure d'émission (secondes auparavant) + Heure d'émission (secondes auparavant) Group ID - + ID du groupe Gxs Transport Groups: - + Groupes de transport de données Gxs: Group ID / Author - + ID du groupe / Auteur Number of messages / Publish TS - + Nombre de message / Tampon Horaire de publication (TS) Local size of data - + Taille des données locales Subscribed - Abonné + Abonné Popularity - Popularité + Popularité Details - Détails + Détails Unknown Peer - + Contact inconnu Pending data items - + Paquets en suspens Unknown - + Inconnu Yes - Oui + Oui No - Non + Non @@ -10091,19 +9876,19 @@ Les messages du forum sont conservés pour %1 jours et synchronisés au cours 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10143,16 +9928,16 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10236,7 +10021,7 @@ p, li { white-space: pre-wrap; } Did you receive a certificate from a friend? - Avez-vous reçu un certificat d'un ami ? + Avez-vous reçu le certificat d'un ami ? @@ -10256,7 +10041,7 @@ p, li { white-space: pre-wrap; } ... - ... + ... @@ -10280,7 +10065,7 @@ Plate-forme de communication décentralisée privée et sécurisée. Do you need help with RetroShare? - + Besoin d'aide avec RetroShare? @@ -10300,12 +10085,12 @@ Plate-forme de communication décentralisée privée et sécurisée. Send via Email - Envoyer votre Certificat par e-mail + Envoyez votre Certificat par e-mail Invite via WebMail - Inviter vos amis par web-mail + Invitez vos amis par web-mail @@ -10315,13 +10100,7 @@ Plate-forme de communication décentralisée privée et sécurisée. <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>The first thing you have to do is to <b>make friends</b>. Once you create a network of Retroshare nodes, or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, use the current page to exchange certificates with other persons you want your Retroshare node to connect to.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to meet other people anonymously.</p> - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Bienvenu sur Retroshare!</h1> <p>La première chose que vous devez faire est de <b>vous faire des amis</b>. Une fois que vous avez créé un réseau d'emplacement Retroshare, ou que vous vous êtes joint à un réseau existant, vous pourrez échanger des fichiers, discuter, parler dans des forums, etc.</p><div align=center><img align="center" width="%2" src=":/images/network_map.png"/> </div> <p>Pour ce faire, utilisez la page en cours pour échanger des certificats avec d'autres personnes auxquelles vous souhaitez vous connecter. - -Une autre option est de rechercher sur Internet des "Retroshare chat servers" (indépendamment administré). Ces serveurs vous permettent d'échanger des certificats avec un emplacement Retroshare dédié, grâce auquel vous pourrez rencontrer d'autres personnes anonymement.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Bienvenu sur Retroshare!</h1> <p>Vous devez <b>vous faire des amis</b>! Une fois que vous avez créé un réseau d'amis, ou que vous vous êtes joint à un réseau existant, vous pourrez échanger des fichiers, discuter, parler dans des forums, etc.</p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> Pour ce faire, copier votre certificat dans cette page et l'envoyer à vos amis. Ensuite, ajouter le certificat de vos amis.<p> <p>Une autre option est de rechercher sur Internet des "Retroshare chat servers" (administré indépendamment ). Ces serveurs vous permettent d'échanger votre certificat avec un emplacement Retroshare dédié, grâce auquel vous pourrez rencontrer d'autres personnes anonymement.</p> @@ -10372,8 +10151,8 @@ Une autre option est de rechercher sur Internet des "Retroshare chat server <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </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"> @@ -10415,7 +10194,7 @@ p, li { white-space: pre-wrap; } Ban-option: - Option de ban: + Option de "ban" : @@ -10549,12 +10328,12 @@ p, li { white-space: pre-wrap; } positive - positif + positif negative - négatif + négatif @@ -10653,25 +10432,7 @@ p, li { white-space: pre-wrap; } Ban-option: - Option de ban: - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 propre opinion au sujet d'une identité réglemente la visibilité de cette identité pour vous-même et les noeuds de vos amis. Votre propre opinion est partagée parmi les amis et utilisée pour calculer un score de réputation : si votre opinion au sujet d'une identité est neutre, le score de réputation est la moyenne d'opinion de vos amis. Sinon, votre propre opinion donne le 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 global est utilisé dans les salons de tchat, forums et chaînes afin de décider des actions à prendre pour chaque identité spécifique. Quand le score global est en dessous de -0.6, l'identité est bannie, ce qui empêche tous les messages et forums/chaînes autorisées par cette identité d'être transmises, dans les deux sens. Certains forums ont aussi des drapeaux spécialement anti-spam qui nécessitent un plus haut niveau de réputation, les rendant moins sensibles aux mauvaises opinions. Le identités bannies perdent graduellement leur activité et éventuellement disparaissent (après 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> + Option de "ban" : @@ -10823,13 +10584,13 @@ Votes négatifs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + @@ -10911,7 +10672,7 @@ p, li { white-space: pre-wrap; } Circles I belong to - Cercles auxquels j'appartiennent + Cercles auxquels j'appartient @@ -10983,10 +10744,6 @@ p, li { white-space: pre-wrap; } Not a member (do not have access to data limited to this circle) Pas un membre (n'a pas d'accès aux données limitées à ce cercle) - - Unknown ID : - ID inconnu : - Identity ID: @@ -11068,7 +10825,7 @@ p, li { white-space: pre-wrap; } for identity - pour identité + pour l'identité @@ -11083,7 +10840,7 @@ p, li { white-space: pre-wrap; } -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. @@ -11122,7 +10879,7 @@ Ces identités ne seront bientôt plus supportées. Identity owned by you, linked to your Retroshare node but not yet validated - + Identité possédée par vous, liée à votre noeud Retroshare mais pas encore validée. @@ -11137,23 +10894,23 @@ Ces identités ne seront bientôt plus supportées. Message in chat room %1 - + Message dans le salon de tchat %1 information - + information This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Copier identité vers le presse-papiers @@ -11183,17 +10940,17 @@ Ces identités ne seront bientôt plus supportées. Unknown ID: - + ID inconnu : positive - positif + positif negative - négatif + négatif @@ -11275,10 +11032,6 @@ Ces identités ne seront bientôt plus supportées. %1 in %2 tab %1 en %2 onglet - - Message in chat lobby %1 - Message dans le salon de tchat %1 - Distant message signature validation. @@ -11750,21 +11503,17 @@ Ces identités ne seront bientôt plus supportées. Recommend in a message to... - + Recommander par messagerie à ... Share on channel... - + Partager sur chaîne ... Share on forum... - - - - Recommend in a message to - Recommander par messagerie à + Partager sur forum ... @@ -12738,10 +12487,6 @@ Voulez-vous enregistrer votre message ? Edit Tag Modifier le mot clé - - Message - Message - Distant messages: @@ -12755,7 +12500,7 @@ Voulez-vous enregistrer votre message ? Mail - Courriel + Messagerie @@ -13470,7 +13215,7 @@ Voulez-vous enregistrer votre message ? Mail - Courriel + Messagerie @@ -13673,30 +13418,6 @@ Voulez-vous enregistrer votre message ? Name Nom - - Did I authenticated peer - Votre authentification du contact - - - Did I sign his PGP key - Votre signature des clés PGP - - - Profile - Profil - - - Has signed my key - A signé ma clé - - - Cert Id - ID du certificat - - - Last used - Dernier utilisé - Clear @@ -13774,7 +13495,7 @@ Voulez-vous enregistrer votre message ? - 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. @@ -13817,97 +13538,11 @@ Par mesure de sécurité votre trousseau précédent à été sauvegardé sous f 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.. - - Personal signature - Signature personnelle - - - PGP key signed by you - Clé PGP que vous avez signée - - - Marginally trusted peer - Confiance moyenne - - - Fully trusted peer - Entière confiance - - - Untrusted peer - Non fiable - - - Yes - Oui - - - No - Non - - - Last hour - Dernière heure - - - Today - Aujourd'hui - - - Never - Jamais - - - %1 days ago - il y a %1 jours - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - vous a authentifié. -Clic droit et sélectionnez 'Devenir ami' pour vous connecter. - - - yourself - 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. - - Has signed your key? - A signé votre clé ? - - - Id - Id - - - Do you accept connections signed by this profile? - Acceptez-vous les connexions signées par ce profil ? - - - Name of the profile - Nom du profil - - - This column indicates trust level and whether you signed the profile PGP key - Cette colonne indique le niveau de confiance et si vous avez signé la clé PGP du profil - - - Did that peer sign your own profile PGP key - A-t-il signé votre clé ? - - - PGP Key Id of that profile - ID de clé de ce profil - - - Last time this key was used (received time, or to check connection) - La dernière fois que cette clé a été utilisée (heure reçue, ou pour vérifier la connexion) - Export/create a new node @@ -13918,10 +13553,6 @@ Clic droit et sélectionnez 'Devenir ami' pour vous connecter.Trusted keys only Clés de confiance uniquement - - Trust level - Niveau de confiance - Search name @@ -14128,7 +13759,7 @@ Les divers événements affichés sont : <ul> <li>Les tentatives de Circles - Cercles + Cercles @@ -14178,21 +13809,17 @@ Les divers événements affichés sont : <ul> <li>Les tentatives de Count occurrences of my current identity - + Compter les occurrences de mon identité actuelle Count occurrences of any of the following texts (separate by newlines): - + Compter les occurrences de n'importe lequel des textes suivants (séparés par des retours à la ligne) : Checked, if the identity and the text above occurrences must be in the same case to trigger count. - - - - Checked, if the identity and the text above occurences must be in the same case to trigger count. - Sélectionné, si l'identité et le texte ci-dessus de même origine doivent être dans le même cas pour déclencher le comptage. + Sélectionné, si l'identité et le texte ci-dessus de même origine doivent être dans le même cas pour déclencher le comptage. @@ -14289,14 +13916,6 @@ Les divers événements affichés sont : <ul> <li>Les tentatives de 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 @@ -14414,7 +14033,7 @@ Les divers événements affichés sont : <ul> <li>Les tentatives de - 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 @@ -14426,13 +14045,13 @@ Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + Routage Turtle désactivé ! @@ -14522,7 +14141,7 @@ Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 align="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"> @@ -14540,10 +14159,6 @@ p, li { white-space: pre-wrap; } PGP key Clé PGP - - Below is the node's profile key in PGP ascii format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - Ci-dessous la clé de profil au format PGP ascii. Il identifie tous les emplacements du même profil. Un "certificat Retroshare" que vous pouvez échanger pour se faire des amis, se trouve dans les "détails" de chaque emplacement. - These options apply to all nodes of the profile: @@ -14582,7 +14197,7 @@ p, li { white-space: pre-wrap; } Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + Ci-dessous la clé de profil au format PGP ASCII. Elle identifie tous les emplacements du même profil. Un "certificat Retroshare" que vous pouvez échanger pour vous faire des amis, se trouve dans les "détails" de chaque emplacement. @@ -14670,13 +14285,14 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Attention : dans vos préférences de Transferts de Fichiers, vous avez autorisé ("Oui") à tous le téléchargement direct. Warning: In your File-Transfer option, you select allow direct download to No. - + @@ -14828,7 +14444,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Décalage temps  : @@ -14858,7 +14474,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -15120,7 +14736,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15133,7 +14749,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15146,7 +14762,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15294,7 +14910,7 @@ avant de vouloir le modifier ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15368,44 +14984,28 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Erreur: l'instance '%1' ne peut pas créer un widget Error: failed to remove file %1 (uninstalling plugin '%2') - + Erreur : échec de la suppression du fichier %1 (désinstallation de l'extension "%2") Error (uninstall): no plugin with name '%1' found - + Erreur (désinstallation) : aucune extension trouvée ayant le nom "%1" Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Erreur: l'instance '%1' ne peut pas créer un widget + Erreur (installation): le fichier plugin %1 n'existe pas Error: no plugin with name '%1' found 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' - - - Error(installation): plugin file %1 doesn't exist - 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') - Error: can't copy %1 to %2 @@ -15589,33 +15189,25 @@ comportements malveillants des extensions. PopupDistantChatDialog - - Chat remotely closed. Please close this window. - Tchat fermé à distance. Veuillez fermer cette fenêtre. - - - 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. - Remote status unknown. - + Statut distant inconnu. Can't send message immediately, because there is no tunnel available. - + Ne peut pas envoyer le message immédiatement, parce qu'il n'y a pas de tunnel disponible. The person you are talking to has deleted the secured chat tunnel. - + La personne à laquelle vous parliez a supprimé le tunnel de tchat sécurisé. The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Le partenaire de tchat a supprimé le tunnel sécurisé, les messages seront livrés dès que possible. @@ -15627,14 +15219,6 @@ comportements malveillants des extensions. 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 @@ -15867,7 +15451,7 @@ comportements malveillants des extensions. New Comment: - Nouveau commentaire : + Nouveau commentaire : @@ -15980,10 +15564,6 @@ comportements malveillants des extensions. Tabs Onglets - - Posted - Publié - Open each topic in a new tab @@ -15992,7 +15572,7 @@ comportements malveillants des extensions. Links - Liens + Liens @@ -16054,13 +15634,21 @@ comportements malveillants des extensions. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 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"> +<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;">Sélectionnez une clé de noeud Retroshare depuis la liste ci-dessous afin de l'utiliser sur un autre ordinateur, puis pressez &quot;Exporter la clé sélectionnée.&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;">Pour créer un nouvel emplacement sur un ordinateur différent, sélectionnez le gestionnaire d'identité dans la fenêtre de connexion (fenêtre de login). Depuis là vous pouvez importer le fichier clé puis créer une nouvel emplacement pour cette clé. </p> +<p 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;">Créer un nouveau noeud avec la même clé permet à vos noeuds amis de vous accepter automatiquement.</p></body></html> @@ -16152,26 +15740,6 @@ et utiliser le bouton d'importation pour la charger Certificates (*.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;"> -<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"> -<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;">Sélectionnez une clé de noeud Retroshare depuis la liste ci-dessous afin de l'utiliser sur un autre ordinateur, puis pressez &quot;Exporter la clé sélectionnée.&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;">Pour créer un nouvel emplacement sur un ordinateur a différent, sélectionnez le gestionnaire d'identité dans la fenêtre de connexion (fenêtre de login). Depuis là vous pouvez importer le fichier clé puis créer une nouvel emplacement pour cette clé. </p> -<p 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;">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: @@ -16391,22 +15959,6 @@ and open the Make Friend Wizard. Cliquez pour ajouter ce certificat Retroshare à votre porte-clés PGP et ouvrir Ajouter un ami. - - Add file - Ajouter un fichier - - - Add files - Ajouter des fichiers - - - Do you want to process the link ? - Voulez-vous traiter le lien ? - - - Do you want to process %1 links ? - Souhaitez-vous traiter les %1 liens ? - Warning: Retroshare is about to ask your system to open this file. @@ -16420,22 +15972,22 @@ et ouvrir Ajouter un ami. Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16570,22 +16122,22 @@ et ouvrir Ajouter un ami. Click to browse/download this file collection - + %1 (%2) - + %1 (%2) Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + %1 (%2 fichiers, %3) @@ -16605,7 +16157,7 @@ et ouvrir Ajouter un ami. Chat room not found - + Salon de tchat introuvable @@ -16698,36 +16250,40 @@ Les caractères <b>",|,/,\,&lt;,&gt;,*,?</b> seront rem Cannot start Tor Manager! - + Ne peut pas démarrer le Tor Manager ! Tor cannot be started on your system: - + Tor ne peut pas être démarré sur votre système : + + Cannot start Tor - + Ne peut pas démarrer Tor Sorry but Tor cannot be started on your system! The error reported is:" - + Désolé mais le Tor ne peut pas être démarré sur votre système ! + +L'erreur rapportée est : " Cannot start a hidden tor service! - + Ne peut pas démarrer un service Tor caché ! It was not possible to start a hidden service. - + Il n'était pas possible de démarrer un service caché. @@ -16760,20 +16316,12 @@ Fichier verrouillé : Tunnel is pending... Messages will be delivered as soon as possible - + Le tunnel est en suspens ... Les messages seront livrés dès que possible Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Tunnel en attente... - - - Secured tunnel is working. You can talk! - Le tunnel sécurisé fonctionne. Vous pouvez parler ! + Le tunnel sécurisé est en marche. Les messages sont livrés immédiatement ! @@ -17009,82 +16557,82 @@ Securité : pas d'IDs anomymes Processing - + En cours de traitement Choosing group - + Creating receipt - + Création de reçu Signing receipt - + Signature de reçu Serializing - + Creating payload - + Encrypting payload - + Publishing - + Publication Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Inconnu Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -17099,12 +16647,12 @@ Securité : pas d'IDs anomymes <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -17227,10 +16775,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17297,9 +16845,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17314,8 +16862,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -17530,83 +17078,12 @@ p, li { white-space: pre-wrap; } <strong>Réception :</strong> 0.00 (kB/s) | <strong>Émission :</strong> 0.00 (kB/s) - - RelayPage - - Enable Relay Connections - Activer les connexions relais - - - Use Relay Servers - Utiliser les serveurs relais - - - Relay options - Options des relais - - - Number - Nombre - - - Bandwidth per link - Bande passante par lien - - - Total Bandwidth - Bande passante totale - - - Friends - Amis - - - kB/s - Ko/s - - - Friends of Friends - Amis de vos amis - - - General - Général - - - Total: - Total : - - - Relay Server Setup - Configuration du serveur relais - - - Add Server - Ajouter un serveur - - - Server DHT Key - Clé DHT du serveur - - - Remove Server - Supprimer serveur - - - Relay - 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 ... @@ -17616,11 +17093,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Recommander par messagerie à + Recommander par messagerie à ... @@ -17718,32 +17191,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Sauvegarder fichier collection. + Sauvegarder fichier collection. File already exists. - Le fichier existe déjà. + Le fichier existe déjà. 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 @@ -17766,12 +17239,12 @@ p, li { white-space: pre-wrap; } Destination: - + Destination : Right click to change download directory - + Clic droit pour modifier le téléchargement @@ -17807,7 +17280,7 @@ p, li { white-space: pre-wrap; } 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. Les caractères <b>",|,/,\,&lt;,&gt;,*,?</b> seront remplacés par des '_'. @@ -17834,19 +17307,11 @@ Les fichiers concernés sont affichés en rouge. <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>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> - - + - + - Remove Duplicate @@ -17872,10 +17337,6 @@ Les fichiers concernés sont affichés en rouge. File Count Compte fichiers - - This is the root directory. - Ceci est le répertoire racine. - Real Size: Waiting child... @@ -17894,17 +17355,17 @@ Les fichiers concernés sont affichés en rouge. Download files - + Télécharger les fichiers Specify... - Spécifier... + Spécifier... Choose directory - + Choisir le dossier @@ -18021,30 +17482,6 @@ If you believe it is correct, remove the corresponding line from the file and re 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. - - - What do you want to do? - Que voulez-vous faire ? - - - Overwrite - Écraser - - - Merge - Mêler - - - Cancel - Annuler - - - File already exists. - Le fichier existe déjà. - RsDownloadListModel @@ -18052,128 +17489,119 @@ Si vous pensez qu'il est correct, supprimez la ligne correspondante du fich 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é Hash - Hash + Hash Last Time Seen i.e: Last Time Receiced Data - Dernière fois vu + Dernière fois vu Path i.e: Where file is saved - Chemin + Chemin Failed - + Échoué 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 - - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - L'image est trop grande pour la transmission. -Réduire l'image par %1x%2 pixels ? + Inconnu @@ -18200,7 +17628,7 @@ Réduire l'image par %1x%2 pixels ? filename - + nom du fichier @@ -18210,7 +17638,7 @@ Réduire l'image par %1x%2 pixels ? level - + niveau @@ -18220,7 +17648,7 @@ Réduire l'image par %1x%2 pixels ? style - + style @@ -18230,7 +17658,7 @@ Réduire l'image par %1x%2 pixels ? stylesheet - + @@ -18240,17 +17668,13 @@ Réduire l'image par %1x%2 pixels ? language - + langue Sets RetroShare's language. Définit la langue de Retroshare. - - RetroShare Usage Information - Information sur l'utilisation de Retroshare - Unable to open log file '%1': %2 @@ -18260,7 +17684,7 @@ Réduire l'image par %1x%2 pixels ? Invalid operating mode specified: - + @@ -18280,32 +17704,32 @@ Réduire l'image par %1x%2 pixels ? opmode - + Sets RetroShare's operating mode. - + Définit le mode de fonctionnement de Retroshare. RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Information concernant le GUI de Retroshare @@ -18387,7 +17811,7 @@ Réduire l'image par %1x%2 pixels ? Distant - Distant + Distants @@ -18871,10 +18295,6 @@ Réduire l'image par %1x%2 pixels ? Network Mode Mode réseau - - Nat - NAT - Automatic (UPnP) @@ -18919,7 +18339,7 @@ Réduire l'image par %1x%2 pixels ? NAT - + NAT @@ -18957,15 +18377,11 @@ Réduire l'image par %1x%2 pixels ? Known / Previous IPs: IPs connues / précédentes : - - Show Discovery information in statusbar - 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 que si vous vous connectez à quelqu'un. Laisser cette case cochée vous aidera @@ -19010,7 +18426,7 @@ derrière un pare-feu ou un VPN (virtual private network). Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Tor a été configuré automatiquement par Retroshare. Vous ne devriez rien avoir à changer ici. @@ -19061,12 +18477,12 @@ derrière un pare-feu ou un VPN (virtual private network). BOB is running and accessible - + BOB en cours d'exécution et accessible BOB is not accessible! Is it running? - + BOB n'est pas accessible ! Est-il en cours d'exécution ? @@ -19075,111 +18491,115 @@ derrière un pare-feu ou un VPN (virtual private network). When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + RetroShare utilise BOB pour installer un tunnel %1 à %2: % 3 (nommé %4) + +Si vous modifiez des options (par exemple le port), utilisez les boutons du bas afin de redémarrer BOB. client - + client server - + serveur unknown - inconnu + inconnu BOB is processing a request - + BOB traite une requête connectivity check - + vérification de connectivité generating key - + génération de clé starting up - + démarrage shuting down - + en cours d'arrêt BOB is processing a request: %1 - + BOB traite une requête : %1 BOB is broken - + BOB est cassé + BOB encountered an error: - + BOB a rencontré une erreur : + BOB tunnel is running - + Le tunnel BOB fonctionne BOB is working fine: tunnel established - + BOB marche bien : tunnel établi BOB tunnel is not running - + Le tunnel BOB ne fonctionne pas BOB is inactive: tunnel closed - + BOB est inactif : tunnel fermé request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + @@ -19234,133 +18654,139 @@ Vérifiez aussi vos ports ! WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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 de Tor par défaut : 127.0.0.1:9050. Paramétrez torrc config et mettez à jour ici. + +Proxy Socks de I2P : voir http://127.0.0.1:7657/i2ptunnelmgr afin de paramétrer un client tunnel: +Assistant de configuration de tunnels -> Tunnel client -> SOCKS 4/4a/5 -> saisissez un nom -> laissez "Mandataires (proxies) sortants" vide -> saisissez un numéro de port (mémorisez-le !) [vous pourriez aussi vouloir mettre la joignabilité à 127.0.0.1] -> Suivant -> cochez "Démarrer automatiquement" -> "Terminer" ! +Maintenant saisissez l'adresse (ex: 127.0.0.1) et le port que vous avez choisi auparavant pour le proxy I2P. + +Vous pouvez vous connecter à des noeuds cachés, même si vous exécutez un noeud standard, alors pourquoi ne pas paramétrer Tor et/ou I2P ? Automatic I2P/BOB - + Automatique I2P/BOB Enable I2P BOB - changing this requires a restart to fully take effect - + Permettre BOB dans I2P - modifier ceci exige un redémarrage pour prendre effet enableds advanced settings - + paramètres avancés permis advanced mode - + mode avancé I2P Basic Open Bridge - + I2P Basic Open Bridge I2P Instance address - + Adresse d'instance I2P 127.0.0.1 - 127.0.0.1 + 127.0.0.1 I2P proxy port - + Port du proxy I2P BOB accessible - + BOB accessible Address - + Adresse .b32.i2p - + .b32.i2p generate new - + générer nouvelle Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Start + Démarrer Restart - + Redémarrer Stop - Stop + Stopper BOB status - + Statut du BOB Incoming - Entrant + Entrant <html><head/><body><p>Setup your hidden address (and port if needed)</p></body></html> - + <html><head/><body><p>Configurer votre adresse cachée (et port si nécessaire)</p></body></html> @@ -19379,101 +18805,112 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Pour recevoir des connexions, vous devez mettre en service un service caché Tor/I2P. + +Pour Tor : voir torrc et sa documentation pour des détails HOWTO (comment faire). + +Pour I2P : voir http://127.0.0.1:7657/i2ptunnelmgr afin de créer un tunnel serveur : +Assistant de création de tunnel -> Tunnel de serveur -> Standard -> entrez un nom -> entrez dans l'adresse et le port que votre RS utilise (voir l'adresse locale ci-dessus) -> cochez "Démarrer automatiquement" -> terminé ! (sauvegarder) + +Une fois que ceci est fait, collez l'adresse (Base32) Onion/I2P dans la case ci-dessus. +Cela est votre adresse externe dans le réseau Tor/I2P. +Assurez-vous finalement que les Ports correspondent à la configuration. + +Si vous avez des soucis concernant la connexion via Tor, pensez à lire les logs de Tor aussi. Relay - Relais + Relais 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 Friends of Friends - Amis de vos amis + Amis de vos amis General - Général + Général Total: - Total : + Total : Warning: This bandwidth adds up to the max bandwidth. - + Avertissement : cette bande passante s'ajoute à la bande passante max. 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 - <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>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> - + @@ -19488,7 +18925,7 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + Activer le filtrage d'IP @@ -19568,10 +19005,6 @@ If you have issues connecting over Tor check the Tor logs too. Hidden Service Configuration Configuration de service caché - - Outgoing Connections - Connexions sortantes - <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> @@ -19603,26 +19036,6 @@ If you have issues connecting over Tor check the Tor logs too. I2P outgoing Okay I2P sortant 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? - Proxy Socks de Tor par défaut : 127.0.0.1:9050. Paramétrez torrc config et mettez à jour ici. - -Proxy Socks de I2P : voir http://127.0.0.1:7657/i2ptunnelmgr afin de paramétrer un client tunnel: -Assistant de configuration de tunnel -> Tunnel client -> SOCKS 4/4a/5 -> saisissez un nom -> laissez 'Proxies sortants' vide -> saisissez un numéro de port (mémorisez-le !) [vous pourriez aussi vouloir mettre la joignabilité à 127.0.0.1] -> Suivant -> cochez 'Démarrage automatique' -> terminé ! -Maintenant saisissez l'adresse (ex: 127.0.0.1) et le port que vous avez choisi auparavant pour le proxy I2P. - -Vous pouvez vous connecter à des noeuds cachés, meêm si vous exécutez un noeud standard, alors pourquoi ne pas paramétrer Tor et/ou I2P ? - - - Incoming Service Connections - Connexions de services entrants - @@ -19659,28 +19072,6 @@ Vous pouvez vous connecter à des noeuds cachés, meêm si vous exécutez un noe Please fill in a service address Veuillez remplir par une adresse de service - - 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. - Pour recevoir des connexions, vous devez mettre en service un service caché Tor/I2P. -Pour Tor : voir torrc et sa documentation pour des détails HOWTO (comment faire). -Pour I2P : voir http://127.0.0.1:7657/i2ptunnelmgr afin de créer un tunnel serveur : -Assistant de création de tunnel -> Tunnel de serveur -> Standard -> entrez un nom -> entrez dans l'adresse et le port que votre RS utilise (voir l'adresse locale ci-dessus) -> cochez "Démarrer automatiquement" -> terminé ! (sauvegarder) - -Une fois que ceci est fait, collez l'adresse (Base32) Onion/I2P dans la case ci-dessus. -Cela est votre adresse externe dans le réseau Tor/I2P. -Assurez-vous finalement que les Ports correspondent à la configuration. - -Si vous avez des soucis concernant la connexion via Tor, pensez à lire les logs de Tor aussi. - IP Range @@ -19729,10 +19120,6 @@ Si vous avez des soucis concernant la connexion via Tor, pensez à lire les logs <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> @@ -19766,12 +19153,12 @@ Si vous avez des soucis concernant la connexion via Tor, pensez à lire les logs Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + <html><head/><body><p>Configurer ici votre proxy SOCKS Tor et I2P. <br/>Si vous préférez utiliser BOB afin qu'il se débrouille automatiquement avec I2P, alors vérifiez l'autre onglet.</p></body></html> @@ -20047,10 +19434,6 @@ Sélectionnez les amis avec lesquels vous voulez partager votre chaîne.Configure shared directories Configurer les dossier partagés - - Search files - Rechercher des fichiers - Start Search @@ -20121,23 +19504,11 @@ Sélectionnez les amis avec lesquels vous voulez partager votre chaîne.Send retroshare Links Envoyer le lien Retroshare - - Send retroshare Links to Cloud - Envoyer les liens Retroshare dans le nuage de liens - - - Add Links to Cloud - Ajouter les liens Retroshare dans le nuage de liens - Some files have been omitted Certains fichiers ont été omis - - Some files have been ommitted because their hash is not available yet. - Certains fichiers ont été omis car leur hachage n'est pas encore disponible. - RetroShare Link @@ -20172,17 +19543,17 @@ Sélectionnez les amis avec lesquels vous voulez partager votre chaîne. Some files have been omitted because they have not been indexed yet. - + Certains fichiers ont été omis car leur hachage n'est pas encore disponible. Search string should be at least 3 characters long. - + La chaîne recherchée doit avoir au moins 3 caractères de long. More than 3000 results. Add more/longer search words to select less. - + Plus de 3000 résultats. Ajoutez davantage de mots ou de plus longs, afin d'en choisir moins. @@ -20292,10 +19663,6 @@ Sélectionnez les amis avec lesquels vous voulez partager votre chaîne. SplashScreen - - Load profile - Chargement du profil - Load configuration @@ -20314,19 +19681,11 @@ Sélectionnez les amis avec lesquels vous voulez partager votre chaîne.RetroShare Retroshare - - Login - Se connecter - - - Profile - Location - Profil - Localisation - Password - Mot de passe + Mot de passe @@ -20352,9 +19711,13 @@ Les identités actuelles/emplacements seront sauvegardé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:'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;">New Profile/Node</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:'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;">New Profile/Node</span></a></p></body></html> @@ -20369,7 +19732,7 @@ p, li { white-space: pre-wrap; } Wrong password - + Mauvais mot de passe @@ -20378,18 +19741,6 @@ p, li { white-space: pre-wrap; } Warning 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;"> -<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"> -<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. @@ -20511,7 +19862,7 @@ Ce choix peut être inversé dans des paramétrages. Gxs Transport - + Transport Gxs @@ -20703,7 +20054,7 @@ Ce choix peut être inversé dans des paramétrages. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20716,7 +20067,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20812,7 +20163,7 @@ p, li { white-space: pre-wrap; } Remove this item - + Enlever cet élément @@ -20967,58 +20318,58 @@ p, li { white-space: pre-wrap; } Dialog - Dialogue + Dialogue Setting up Tor... - + Paramétrage de Tor ... Tor status: - + Statut de Tor : Unknown - + Inconnu Not started - + Non démarré Hidden service address: - + Adresse du service caché : Tor bootstrap status: - + Statut de l'amorçage de Tor : Not set - + Non défini Onion address: - + Adresse Onion : Check that Tor is accessible in your executable path - + Vérification que Tor est accessible dans votre chemin d'exécutables [Waiting for Tor...] - + [En attente de Tor ...] @@ -21026,28 +20377,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + <p>Cette version de Retroshare utilise Tor pour se connecter à vos amis.</p> Tor is currently offline - + Tor est hors ligne actuellement Tor is OK - + Tor est OK No tor configuration - + Pas de configuration de Tor @@ -21100,42 +20451,42 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + <html><head/><body><p>Lorsqu'il suit des liens symboliques, Retroshare peut rencontrer le même répertoire/fichier plus d'une fois. Si cochée, cette option fera comprendre à Retroshare qu'il doit ignorer silencieusement le fichier. Cette option économise à Retroshare de l'indexation, envers les boucles de répertoires.</p></body></html> Ignore duplicate files/directories - + Ignorer les fichiers/répertoires doublons Maximum depth (0=unlimited): - + Profondeur maximum (0=illimitée) : <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + @@ -21156,7 +20507,7 @@ p, li { white-space: pre-wrap; } Maximum uploads per friend (0 = no limit) - + @@ -21176,7 +20527,7 @@ p, li { white-space: pre-wrap; } Allow direct download: - + @@ -21216,29 +20567,29 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Oui + Oui No - Non + Non Per user - + Par utilisateur <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -21349,21 +20700,6 @@ p, li { white-space: pre-wrap; } Completed Terminé - - Speed - i.e: Download speed - Vitesse - - - Progress / Availability - i.e: % downloaded - Progression / Disponibilité - - - Sources - i.e: Sources - Sources - Status @@ -21379,16 +20715,6 @@ p, li { white-space: pre-wrap; } Remaining Restant - - Download time - i.e: Estimated Time of Arrival / Time left - Temps restant estimé - - - Peer - i.e: user name - Contact - Progress @@ -21443,7 +20769,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Contact + @@ -21592,72 +20918,6 @@ p, li { white-space: pre-wrap; } Choose directory Choisir le répertoire - - Failed - Echoué - - - Okay - OK - - - Waiting - En attente - - - Downloading - Téléchargement en cours - - - Complete - Terminé - - - Queued - En file d'attente - - - Paused - En pause - - - Checking... - Vérification en cours... - - - Unknown - Inconnu - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -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 -ne correspond pas à la valeur de hachage annoncé -par la source du fichier. Les données sont susceptibles -d'être corrompues. - -Retroshare demandera alors à la source -la carte précise des données, cela permettra de comparer et d'invalider -les blocs défectueux, et de les télécharger à nouveau - -Essayez d'être patient ! - - - Transferring - En cours de transfert - - - Uploading - En cours d'envoi - Anonymous end-to-end encrypted tunnel 0x @@ -21667,7 +20927,7 @@ Essayez d'être patient ! Tunnel - + Tunnel @@ -21727,15 +20987,6 @@ Essayez d'être patient ! Please enter a new--and valid--filename S'il vous plaît entrez un nouveau--et valide--nomdefichier - - Last Time Seen - i.e: Last Time Receiced Data - Dernière fois vu - - - UserID - ID de l'utilisateur - @@ -21843,11 +21094,6 @@ Essayez d'être patient ! File Transfers Transferts de fichiers - - Path - i.e: Where file is saved - Chemin - Path @@ -21891,16 +21137,12 @@ Essayez d'être patient ! %1 tunnels - + %1 tunnels Anonymous tunnel 0x - Tunnel anonymes 0x - - - version: - version : + Tunnel anonyme 0x @@ -21937,7 +21179,7 @@ Essayez d'être patient ! Empty - + Vide @@ -21968,7 +21210,7 @@ Essayez d'être patient ! # Files - + # de Fichiers @@ -21998,12 +21240,12 @@ Essayez d'être patient ! Column %1 - + Colonne %1 Row %1 - + Ligne %1 @@ -22052,7 +21294,7 @@ Essayez d'être patient ! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -22300,43 +21542,27 @@ Essayez d'être patient ! Port: - Port : + Port: Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - 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) - - - apply setting and start browser - 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. + <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> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interface 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 afin de sécuriser la connexion.</p> @@ -22985,134 +22211,134 @@ Essayez d'être patient ! Do you accept connections signed by this profile? - Acceptez-vous les connexions signées par ce profil ? + Name of the profile - Nom du profil + This column indicates trust level and whether you signed the profile PGP key - Cette colonne indique le niveau de confiance et si vous avez signé la clé PGP du profil + Did that peer sign your own profile PGP key - A-t-il signé votre clé ? + PGP Key Id of that profile - ID de clé de ce profil + Last time this key was used (received time, or to check connection) - La dernière fois que cette clé a été utilisée (heure reçue, ou pour vérifier la connexion) + Connections - + Profile - Profil + Profil Trust level - Niveau de confiance + Niveau de confiance Has signed your key? - A signé votre clé ? + A-t-il signé votre clé ? Id - Id + Id Last used - Dernier utilisé + Dernièrement utilisée Personal signature - Signature personnelle + Signature personnelle Marginally trusted peer - Confiance moyenne + Confiance moyenne Fully trusted peer - Entière confiance + Entière confiance Untrusted peer - Non fiable + Non fiable Yes - Oui + Oui No - Non + Non Last hour - Dernière heure + Dernière heure Today - Aujourd'hui + Aujourd'hui Never - Jamais + Jamais %1 days ago - il y a %1 jours + %1 jours avant Accepted - Accepté + Accepté - - + - PGP key signed by you - Clé PGP que vous avez signée + Clé PGP que vous avez signée 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. - + \ 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 b43c2d028..302a562e2 100644 Binary files a/retroshare-gui/src/lang/retroshare_hu.qm and b/retroshare-gui/src/lang/retroshare_hu.qm differ diff --git a/retroshare-gui/src/lang/retroshare_hu.ts b/retroshare-gui/src/lang/retroshare_hu.ts index d71bbcbe0..3bd521859 100644 --- a/retroshare-gui/src/lang/retroshare_hu.ts +++ b/retroshare-gui/src/lang/retroshare_hu.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + Retroshare verzió @@ -28,7 +26,7 @@ About - Névjegy + Névjegy @@ -36,52 +34,52 @@ Form - + Forma About - Névjegy + Névjegy Copy Info - + Információ másolása close - + bezár Max score: %1 - + Max. pontszám: %1 Score: %1 - + Pontszám: %1 Level: %1 - + Szint: %1 About RetroShare - A RetroShare névjegye + RetroShate Névjegy Have fun ;-) - + Kezdődhet a móka! ;) Only Hidden Node - + Csak rejtett csomópont @@ -116,9 +114,10 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - Sajnálom, nem található alapértelmezett parancs a fájlhoz(\n) + Sajnálom, nem található alapértelmezett parancs a fájlhoz + @@ -141,7 +140,7 @@ Reset the search criteria. - Keresési feltétel törlése. + Keresési feltételek törlése. @@ -205,7 +204,7 @@ Holiday - Nyaralás + Vakáció @@ -240,7 +239,7 @@ Caption: - Képaláírás + Képaláírás: @@ -315,7 +314,7 @@ Authenticated Comments - Azonosított hozzászólások + Hitelesített hozzászólások @@ -325,14 +324,14 @@ Publish with Identity - Küldés a nevemmel ellátva + Küldés személyazonossággal <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -373,7 +372,7 @@ p, li { white-space: pre-wrap; } Load Album Thumbnail - Album előnézet betöltése + Album bélyegkép betöltése @@ -387,7 +386,7 @@ p, li { white-space: pre-wrap; } Album Thumbnail - Album előnézet + Album bélyegkép @@ -454,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -502,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -515,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -539,7 +538,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + (Újraindítás szükséges) @@ -549,7 +548,7 @@ p, li { white-space: pre-wrap; } Choose RetroShare's interface style - RetroShare külső stílusának váltása + Válaszd ki a RetroShare felületének stílusát @@ -569,7 +568,7 @@ p, li { white-space: pre-wrap; } Icon Only - Csak ikonokként + Csak ikonok @@ -624,47 +623,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Toaster letiltása Show Sound Status - + Hang Show Network Rate Status - + Hálózatforgalom Show Discovery Status - + Felfedezés állapota Show DHT Status - + DHT állapota Show Hashing Status - + Hashelés állapota Show NAT Status - + NAT állapota Show Peer Status - + Partnerek állapota Show Status ComboBox - + Állapot lista @@ -674,37 +673,37 @@ p, li { white-space: pre-wrap; } Compact Mode - Kompakt mód + Összevont mód Show Operating Mode Status - + Működési mód Show SysTray on Status Bar - Mutassa a SysTray-t az Állapotjelző sávon + Mutassa az Értesítési Területet az Állapotjelző sávon Disable SysTray ToolTip - SysTray ToolTip letiltása + Értesítési Terület elemleírásának letiltása Main page items: - + Főoldal elemei: Buttons - + Gombok Item list - + Lista @@ -899,7 +898,7 @@ p, li { white-space: pre-wrap; } Since: - Óta: + Átvitel kezdete: @@ -934,12 +933,12 @@ p, li { white-space: pre-wrap; } Average - Átlagos + Átlag Total - + Összesen @@ -952,7 +951,7 @@ p, li { white-space: pre-wrap; } ID - ID + Azonosító @@ -1025,7 +1024,7 @@ p, li { white-space: pre-wrap; } Form - Ablak + Forma @@ -1060,22 +1059,22 @@ p, li { white-space: pre-wrap; } Legend: - + Jelmagyarázat Current - + Jelenlegi Total - + Összesen Log scale - + Napló mérték @@ -1098,7 +1097,7 @@ p, li { white-space: pre-wrap; } Load posts in background (Thread) - + Hozzászólások betöltése a háttérben (Fonál) @@ -1108,14 +1107,10 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - Résztvevők - Name - Név + Név @@ -1130,12 +1125,12 @@ p, li { white-space: pre-wrap; } Ban this person (Sets negative opinion) - + Személy bannolása (Negatív véleményt állít be) Send Message - Üzenet elküldése + Üzenet küldése @@ -1160,17 +1155,13 @@ p, li { white-space: pre-wrap; } Select friends to invite: - Meghivandó barátok kiválasztása: + Meghívandó barátok kiválasztása: Topic: %1 Téma: %1 - - Lobby management - Szobák kezelése - %1 changed his name to: %2 @@ -1179,63 +1170,63 @@ p, li { white-space: pre-wrap; } 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/> + Résztvevő némításhoz/némítás visszavonásához kattints jobb gombbal<br/>A személy megszólításához kattints duplán<br/> This participant is not active since: - Ezen résztvevő már nem aktív: + Ezen résztvevő már ennyi ideje nem aktív: seconds - másodpercek + másodperc Start private chat - Privát beszélgetés kezdése + Privát beszélgetés indítása Give neutral opinion - + Semleges vélemény beállítása Give positive opinion - + Pozitív vélemény beállítása Show author in people tab - + Mutasd a szerzőt a Személyek fülön Search - Keresés + Keresés Leave this chat room (Unsubscribe) - + Csevegőszoba elhagyása (Leiratkozás) Welcome to chat room %1 - + Üdvözlünk a csevegőszobában: %1 Room chat - + Szoba társalgás Decryption failed. - Dekódolás sikertelen. + Visszafejtés sikertelen. @@ -1255,44 +1246,44 @@ p, li { white-space: pre-wrap; } Unknown error. - Ismeretlen hiba + Ismeretlen hiba. Cannot start distant chat - Nem sikerült távoli beszélgetést kedeményezni + Nem sikerült távoli beszélgetést kezdeményezni Distant chat cannot be initiated: - Távoli beszélgetés indítása meghiúsult + Távoli beszélgetés indítása meghiúsult: %1 has left the room. - + %1 elhagyta a szobát. Chat room management - + Csevegőszoba beállításai %1 joined the room. - + %1 belépett a szobába. Unsubscribe from chat room - + Leiratkozás a társalgószobából Do you want to unsubscribe to this chat room? - + Le szeretnél iratkozni erről a társalgószobáról? @@ -1300,7 +1291,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - Chatszoba mutatása + Társalgószoba megjelenítése @@ -1308,7 +1299,7 @@ p, li { white-space: pre-wrap; } Chats - + Társalgószobák @@ -1363,111 +1354,113 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + Feliratkozásaid: Privát társalgószobák Public Subscribed chat rooms - + Feliratkozásaid: Nyilvános társalgószobák Private chat rooms - + Privát társalgószobák Public chat rooms - + Nyilvános társalgószobák <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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;Társalgószobák</h1> <p>A társalgószobák az IRC-hez hasonlóan működnek. Névtelen módon beszélgethetsz, anélkül, hogy fel kellene venned a személyeket barátnak.</p> <p>Egy társalgószoba lehet nyilvános (a barátaid látják) vagy privát (a barátaid nem látják, mindaddig míg nem hívod meg őket: <img src=":/images/add_24x24.png" width=%2/>). Ha meghívnak egy privát szobába, akkor válik számodra láthatóvá, ha egy barátod is belépett az adott szobába.</p> <p>A bal oldali listában találhatók azok a szobák, amikbe a barátaid bejelentkeztek. Továbbá <ul> <li>Létrehozatsz új szobát Jobb klikkel</li> <li>Dupla kattintással belépsz a szobába. Ekkor a szoba láthatóvá válik a további barátaid számára.</li> </ul> Megjegyzés: A társalgószobák zökkenőmentes működéséhez nem árt ha pontos a számítógép órája. Vess rá egy pillantást! </p> Create chat room - + Társalgószoba létrehozása Leave this room - + Szoba elhagyása Create a non anonymous identity and enter this room - + Hozz létre egy személyazonosságot, amely nem Álnév típusú és lépj be a szobába Create an identity and enter this chat room - + Hozz létre egy személyazonosságot és lépj be a szobába Enter this chat room - + Belépés a társalgószobába Enter this chat room as... - + Belépés a társalgószobába mint... Copy RetroShare Link - + RetroShare link másolása You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + Nem léphetsz be ebbe a szobába az alapértelmezett személyazonosságoddal, mert az Álnév és ez a szoba nem engedélyezi így a belépést. You're not subscribed to this chat room; Double click-it to enter and chat. - + Nem vagy feliratkozva erre a társalgószobára; Kattints duplán a belépéshez. You will need to create a non anonymous identity in order to join this chat room. - + Létre kell hoznod lesz egy nem Álnév típusú személyazonosságot, hogy beléphess ebbe a szobába. You will need to create an identity in order to join chat rooms. - + Létre kell hoznod egy személyazonosságot, hogy beléphess ebbe a szobába. No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + Nincs társalgószoba kiválasztva. +Kattints egy társalgószobára a bal oldali listában, hogy lásd a részleteket. +Kattints duplán egy társalgószobára a belépéshez. %1 invites you to chat room named %2 - + %1 meghívott téged a %2 nevű társalgószobába Choose a non anonymous identity for this chat room: - + Ehhez a társalgószobához válassz nyilvános felhasználónevet: Choose an identity for this chat room: - + Válassz személyazonosságot ehhez a szobához: Create chat lobby - Új chatszoba létrehozása + Társalgószoba létrehozása @@ -1493,7 +1486,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - Névtelen ID-k elfogadottak + Névtelen azonosítók elfogadottak @@ -1508,7 +1501,7 @@ Double click a chat room to enter and chat. Search Chat lobbies - Csevegőszobák keresése + Társalgószobák keresése @@ -1538,17 +1531,17 @@ Double click a chat room to enter and chat. Chat rooms - + Társalgószobák Chat room Name: - + Társalgószoba neve: Chat room Id: - + Társalgószoba azonosító: @@ -1583,12 +1576,12 @@ Double click a chat room to enter and chat. Default identity is anonymous - + Az alapértelmezett személyazonosság névtelen No anonymous IDs - + Névtelen azonosítók nem engedélyezettek @@ -1607,7 +1600,7 @@ Double click a chat room to enter and chat. Chats - + Társalgószobák @@ -1665,7 +1658,7 @@ Double click a chat room to enter and chat. Distant Chat - Távoli csevegés + Távoli beszélgetés @@ -1685,22 +1678,22 @@ Double click a chat room to enter and chat. Accept encrypted distant chat from - Titkosított távoli üzenetek elfogadása tőle: + Titkosított távoli beszélgetés fogadása tőle: Chat Settings - Csevegés beállításai + Beszélgetés beállításai Enable Emoticons Private Chat - Hangulatjelek engedélyezése privát beszélgetésben + Hangulatjelek engedélyezése Privát beszélgetésnél Enable Emoticons Group Chat - Hangulatjelek engedélyezése csoportos csevegésnél + Hangulatjelek engedélyezése Csoportos beszélgetésnél @@ -1740,17 +1733,17 @@ Double click a chat room to enter and chat. Send as plain text by default - + Küldés egyszerű szövegként legyen az alapértelmezett Load embedded images - Beágyazott képek megjelenítése + Beágyazott képek betöltése Chat Lobby - Csevegő szoba + Társalgószoba @@ -1760,22 +1753,22 @@ Double click a chat room to enter and chat. Do not send typing notifications - + Ne küldjön értesítést arról, ha írok Private Chat - Privát csevegés + Privát beszélgetés Open Window for new chat - Új csevegőablak nyitása + Új társalgóablak nyitása Grab Focus when chat arrives - Ablak előtérbe hozása csevegés kezdésekor + Ablak előtérbe hozása társalgás kezdetekor @@ -1790,17 +1783,17 @@ Double click a chat room to enter and chat. Chat Font - Csevegés betűtípusa + Beszélgetés betűtípusa Change Chat Font - Csevegés betűtípusának megváltoztatása + Beszélgetés betűtípusának megváltoztatása Chat Font: - Csevegés betűtípusa + Beszélgetés betűtípusa: @@ -1818,31 +1811,31 @@ Double click a chat room to enter and chat. Style: - + Stílus: Variant: - + Változat: Group chat - Csoport beszélgetés + Csoportos beszélgetés Private chat - Privát csevegés + Privát beszélgetés Choose your default font for Chat. - + Válassz betűtípust a Beszélgetéshez. @@ -1897,21 +1890,17 @@ Double click a chat room to enter and chat. /me is sending a message with /me - - - - Chat - Csevegés + Felhasználónév elküldése ezzel: /me <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">Ezen a fülön beállíthatod, hogy a különböző típusú üzenetekből mennyit tároljon el a RetroShare a merevlemezen és hogy mennyi előző beszélgetést állítson vissza az aktuális ablakba. A maximális tárolási idő beállítása lehetővé teszi a régi üzenetek mellőzését, illetve segít megakadályozni, hogy az előzmények tele legyenek kevésbé fontos beszélgetésekkel (például egyes társalgószobák vagy távoli üzenetek előzményei). </p></body></html> Chatlobbies - Csevegőszobák + Társalgószobák @@ -1936,7 +1925,7 @@ Double click a chat room to enter and chat. Search by default - + Keresés alapértelmezései @@ -1946,72 +1935,72 @@ Double click a chat room to enter and chat. Whole Words - + Teljes szavak Move to cursor - + Ugrás az kurzorhoz Color All Text Found - + Az összes megtalált szöveg kiemelése színnel Color of found text - + Megtalált szöveg színe Choose color of found text - + Válaszd ki a megtalált szöveg színét Maximum count for coloring matching text - + Maximum ennyi illeszkedő szöveget színezzen ki Threshold for automatic search - + Automatikus keresés küszöb Default identity for chat lobbies: - + Alapértelmezett személyazonosság a társalgószobákhoz: Show Bar by default - + Keresés mező megjelenítése legyen alapértelmezett Private chat invite from - + Meghívás privát beszélgetésre tőle: Name : - + Név : PGP id : - + PGP azonosító : Valid until : - + Érvényes eddig : Chats - + Beszélgetések @@ -2052,7 +2041,7 @@ Double click a chat room to enter and chat. Show Chat - Csevegés mutatása + Beszélgetés mutatása @@ -2060,7 +2049,7 @@ Double click a chat room to enter and chat. Private Chat - Privát csevegés + Privát beszélgetés @@ -2093,7 +2082,7 @@ Double click a chat room to enter and chat. Insert emoticon - + Hangulatjel beillesztése @@ -2103,17 +2092,17 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> Strike - + Áthúzott Clear Chat History - Csevegési előzmények törlése + Beszélgetés előzmények törlése @@ -2124,7 +2113,7 @@ Double click a chat room to enter and chat. Save Chat History - Csevegési előzmények mentése + Beszélgetés előzmények mentése @@ -2139,12 +2128,12 @@ Double click a chat room to enter and chat. Delete Chat History - Csevegési előzmények törlése + Beszélgetés előzmények törlése Deletes all stored and displayed chat history - Az összes tárolt és megjelenített csevegési előzmény törlése + Az összes tárolt és megjelenített beszélgetés előzmény törlése @@ -2159,48 +2148,48 @@ Double click a chat room to enter and chat. Quote - Idézés + Idézés Quotes the selected text - + Kiválasztott szöveg idézése Drop Placemark - + Helyzetjelző beillesztése Insert horizontal rule - + Vízszintes vonalzó beillesztése Save image - + Kép mentése Send as PlainText - + Küldés egyszerű üzenetként Send as plain text without font. - + Küldés egyszerű üzenetként betűtípus nélkül. Don't replace tag with Emote Icon. - + Ne helyettesítsd Hangulatjellel. Show Hidden Images - + Rejtett képek megjelenítése @@ -2211,18 +2200,20 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + %1 karakter marad +a HTML átalakítás után. Warning: This message is too big of %1 characters after HTML conversion. - + Figyelem: Az üzenet %1 karakterrel hosszabb a megengedettnél +a HTML átalakítás után. Choose your font. - + Válassz betütípust. @@ -2257,11 +2248,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Az általad elküldött üzenet a barátod csatlakozásakor lesz kézbesítve + Az elküldött üzeneteket a címzett akkor kapja meg, amikor újra bejelentkezett. @@ -2281,59 +2268,59 @@ after HTML conversion. Find Case Sensitively - + Kis- és nagybetű érzékenység szerinti keresés Find Whole Words - + Teljes szavak keresése Move To Cursor - + Ugrás a kurzorhoz Don't stop to color after X items found (need more CPU) - + Ne hagyd abba a színezést X elem megtalálása után (több CPU erőforrás szükséges) <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Előző keresése </b><br/><i>Ctrl+Shift+G</i> <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Következő keresése</b><br/><i>Ctrl+G</i> <b>Find </b><br/><i>Ctrl+F</i> - + <b>Keresés </b><br/><i>Ctrl+F</i> (Status) - + (Állapot) Set text font & color - + Betűtípus és szín beállítása Attach a File - + Fájl csatolása WARNING: Could take a long time on big history. - + FIGYELEM: Sokáig tarthat terjedelmes előzmények esetén. @@ -2344,53 +2331,54 @@ after HTML conversion. <b>Mark this selected text</b><br><i>Ctrl+M</i> - + <b>Kiválasztott szöveg megjelölése</b><br><i>Ctrl+M</i> Person id: - + Személyazonosító Double click on it to add his name on text writer. - + +A nevet kettős kattintással hozzáadhatod a szövegszerkesztőhöz. Unsigned - + Aláiratlan items found. - + találat. No items found. - + Nincs találat. <b>Return to marked text</b><br><i>Ctrl+M</i> - + <b>Vissza a megjelölt szöveghez</b><br><i>Ctrl+M</i> Type a message here - + Írj be egy üzenetet ide Don't stop to color after - + Ne állj le a színezéssel, miután items found (need more CPU) - + elemet megtaláltál (több CPU erőforrás szükséges) @@ -2403,7 +2391,7 @@ Double click on it to add his name on text writer. Empty Circle - + Üres Kör @@ -2411,7 +2399,7 @@ Double click on it to add his name on text writer. Showing details: - Részletek mutatása: + Részletek megjelenítése: @@ -2427,7 +2415,7 @@ Double click on it to add his name on text writer. IDs - ID + Azonosító @@ -2443,7 +2431,7 @@ Double click on it to add his name on text writer. Peers - Kapcsolatok + Partnerek @@ -2453,7 +2441,7 @@ Double click on it to add his name on text writer. ID - ID + Azonosító @@ -2469,7 +2457,7 @@ Double click on it to add his name on text writer. Others - Egyebek + Többiek @@ -2524,7 +2512,7 @@ Double click on it to add his name on text writer. External Circles (Subscribed) - Külső körök (feliratkozva) + Külső körök (feliratkozottak) @@ -2545,10 +2533,6 @@ Double click on it to add his name on text writer. Details Részletek - - Peer Address - Partner címe - @@ -2563,12 +2547,12 @@ Double click on it to add his name on text writer. Node info: - + Csomópont adatai: Current address: - + Jelenlegi cím: @@ -2581,10 +2565,6 @@ Double click on it to add his name on text writer. Port Port - - Addresses list - Címlista - Include signatures @@ -2614,64 +2594,60 @@ Double click on it to add his name on text writer. Not connected Nem csatlakozott - - Peer Addresses - Partner címei - Retroshare node details - + Retroshare csomópont részletei Node name : - + Csomópont neve : Status : - + Állapot : Last Contact : - + Legutóbbi kapcsolat : Retroshare version : - + Retroshare verzió : Node ID : - + Csomópont azonosító : Name: - Név: + Név: Status message: - + Állapot üzenet: List of known addresses: - + Ismert címek felsorolása: Retroshare Certificate - + Retroshare tanúsítvány Hidden Address - + Rejtett cím @@ -2682,47 +2658,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <p>Ez a tanúsítvány tartalmaz: <li>a <b>node ID</b> and <b>name</b> - + <li>egy <b>csomópont azonosítót</b> és <b>nevet</b> an <b>onion address</b> and <b>port</b> - + egy <b>onion címet</b> és <b>portot</b> an <b>IP address</b> and <b>port</b> - + egy <b>IP címet</b> és <b>portot</b> <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <p>Használd ezt a tanúsítványt, hogy új barátokat szerezz. Küldd el emailben, vagy juttasd el a címzettnek egyéb módon.</p> <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>Ez egy csomópont <span style=" font-weight:600;">OpenSSL</span> tanúsítvánnyal ellátott azonosítója, amely a fenti <span style=" font-weight:600;">PGP</span> kulccsal lett aláírva. </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>Ez az <span style=" font-weight:600;">OpenSSL</span> által használt titkosítási eljárás. Az összeköttetés a barátok csomópontjaihoz</p><p>mindig erősen titkosított és ha a DHE jelen van, akkor az összeköttetés további </p><p>&quot;tökéletes továbbítási titkosítást&quot;.</p> használ.</body></html> with - + ­ external signatures</li> - + külső aláírásokkal</li> @@ -2740,18 +2716,19 @@ Double click on it to add his name on text writer. &You get a certificate file from your friend - &Barátod tanúsítványának átvétele fájlként + &Tanúsítvány fájl érkezett a barátodtól &Make friend with selected friends of my friends - &Barát barátjával barátkozás + &Barátaim barátjainak felvétele barátként &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &Küldj meghívót emailben + (A címzett emailben kapja meg hogyan kell letölteni a Retroshare-t) @@ -2777,17 +2754,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Ismerős tanúsítványának megnyitása fájlból Open certificate - + Tanusítvány megnyitása Please, paste your friend's Retroshare certificate into the box below - + Kérlek illeszd be a barátod Retroshare tanúsítványát az alábbi mezőbe @@ -2847,67 +2824,67 @@ Double click on it to add his name on text writer. RetroShare ID - RetroShare ID + RetroShare azonosító Use RetroShare ID for adding a Friend which is available in your network. - RetroShare ID használata egy a hálózatodban elérhető barát felvételéhez. + RetroShare azonosító használata egy a hálózatodban elérhető barát felvételéhez. Add Friends RetroShare ID... - Barát RetroShare ID-jének megadása... + Barát RetroShare azonosítójának megadása... Paste Friends RetroShare ID in the box below - Illeszd be az alábbi mezőbe a barát RetroShare ID-jét + Illeszd be az alábbi mezőbe a barát RetroShare azonosítóját Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - Írd be a barátod RetroShare ID-jét. Pl.: Valaki@BDE8D16A46D938CF + Írd be a barátod RetroShare azonosítóját! Pl.: Partner@BDE8D16A46D938CF RetroShare is better with Friends - + A barátiaddal sokkal jobb hely a RetroShare Invite your Friends from other Networks to RetroShare. - + Barátok meghívása a RetroShare-be egyéb hálózatokból. GMail - + GMail Yahoo - + Yahoo Outlook - + Outlook AOL - + AOL Yandex - + Yandex Email - Email + Email @@ -2969,13 +2946,14 @@ Double click on it to add his name on text writer. Node: - + Csomópont: 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. - + Kérlek vedd figyelembe, hogy a RetroShare sok sávszélességet, memóriát vagy CPU használatot igényel, ha túl sok barátot veszel fel. Természetesen annyi barátot vehetsz fel amennyit csak szeretnél, de 40-nél több barát felvétele esetleg túl sok +erőforrást igényel. @@ -2992,47 +2970,47 @@ 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: - + Ez a varázsló segít abban, hogy csatlakozhass a barát(ok)hoz a RetroShare hálózaton keresztül. <br>Válaszd ki, miként szeretnéd felvenni: Enter the certificate manually - + Tanúsítvány beírása kézzel Enter RetroShare ID manually - + RetroShare azonosító beírása kézzel &Send an Invitation by Web Mail Providers - + &Küldés és meghívás webes email kiszolgálókon keresztül Recommend many friends to each other - + Ajánlj barátokat egymásnak RetroShare certificate - + RetroShare tanúsítvány Please paste below your friend's Retroshare certificate - + Kérlek illeszd be alább a barátod Retroshare tanúsítványát Paste certificate - + Tanúsítvány beillesztése <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + <html><head/><body><p>A mezőbe a barátod Retroshare tanúsítványát illeszd be. FIGYELEM: ez különbözik a barátod profil kulcsától. Ne illeszd be ide a barátod profil kulcsát (vagy annak egy részét), mert nem fog működni!</p></body></html> @@ -3056,7 +3034,7 @@ resources. To accept the Friend Request, click the Finish button. - A baráti kérelem elfogadásához kattints a kész gombra. + A baráti kérelem elfogadásához kattints a Kész gombra. @@ -3091,12 +3069,12 @@ resources. <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;">A barátod kulcsának aláírása alkalmas arra, hogy kifejezd a bizalmad iránta és ezt jelezd a többiek felé. Az aláírások kriptográfiailag bizonyítják, hogy az alábbi kulcsok hitelesnek ismerik el az aktuális PGP kulcsot.</span></p></body></html> This peer is already on your friend list. Adding it might just set it's ip address. - A személy már szerepel a barátlistádon. Az újbóli felvétele csak az ip címét fogja változtatni. + A személy már szerepel a barátlistádon. Az újbóli felvétele csak az IP címét fogja változtatni. @@ -3162,7 +3140,7 @@ resources. Signed peers showing as denied - Aláírt partnrek elutasítva + Aláírt partnerek elutasítottként jelennek meg @@ -3177,17 +3155,17 @@ resources. Peer id - Partner ID + Partner azonosító Certificate appears to be valid - + Úgy tűnik, érvényes a tanúsítvány Not a valid Retroshare certificate! - + Érvénytelen Retroshare tanúsítvány! @@ -3200,36 +3178,38 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Figyelmeztetés: a fájlküldési beállításoknál a közvetlen letöltés engedélyét IGENre állítottad. Warning: In your File-Transfer option, you select allow direct download to No. - + +Figyelmeztetés: az Átvitel beállításainál Nem engedélyezted a közvetlen letöltést. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + Ez a saját tanusítványod! Ugye nem saját magadat akarod ismerősként megadni?! This key is already on your trusted list - + A kulcs már fenn van a megbízhatók listáján You have already signed this key - + Ezt a kulcsot már aláírtad Ultimate - Teljes + Legteljesebb @@ -3255,12 +3235,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. You have a friend request from - Van egy baráti felkérésed tőle + Van egy barát felkérésed tőle Certificate Load Failed:file %1 not found - Tanúsítvány betöltése sikertelen: nem található %1 fájl + Tanúsítvány betöltése sikertelen: nem található ez a fájl: %1 @@ -3329,7 +3309,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Please choose a filename - Kérlek, válassz ki egy fájlnevet + Kérlek, válassz egy fájlnevet @@ -3355,37 +3335,37 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP-Addr: - + IP-cím: IP-Address - + IP-cím: Show Advanced options - + Haladó beállítások megjelenítése <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;">A barátod kulcsának aláírása alkalmas arra, hogy kifejezd a bizalmad iránta és ezt jelezd a többiek felé. Ez segíthet nekik eldönteni, hogy elfogadják-e a kapcsolódást az adott kulcs tulajdonosától. Egy kulcs aláírása csak egy lehetőség, de visszavonhatatlan. Ezért fontold meg és dönts okosan.</span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">A Retroshare időnként ellenőrzi a barátlistád kereshető fájlokért, melyek megegyeznek az átviteli fájlokkal, azért, hogy közvetlen fájlátvitel valósulhasson meg. Ebben az esetben a barátod tudni fogja, hogy letöltöd azt a fájlt.</p><p align="justify">Hogy elkerüld ezt a viselkedést, és ki szeretnéd hagyni ebből ezt a barátodat, akkor szüntesd meg a doboz kijelölését. Továbbra is lehetőséged lesz a fájl letöltésére tőle, ehhez azonban előbb igényelned kell azt. Például az adott fájl manuális letöltésével a barátod megosztott mappájából. Ez a beállítás egy adott csomóponthoz tartozó összes helyszínre érvényes lesz.</p></body></html> <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. Applied to all locations of the same node.</p></body></html> - + <html><head/><body><p>Ez az opció lehetővé teszi, hogy önműködően letöltsd az ennek a csomópontnak valamelyik üzenetben javasolt fájlt. Arra is használhatod, hogy saját csomópontjaid között fájlokat továbbíts. Ugyanazon csomópont összes helyszinére vonatkozik.</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. Applies to all locations of the same node.</p></body></html> - + <html><head/><body><p>Azon ismerősök, akiknél ez a beállítás szerepel, nem tudnak kapcsolódni, ha a címük hiányzik az engedélyezettek listájáról. Ez védelmet nyújt az adatforgalom-átirányítás jellegű támadásokkal szemben. Ha ez van beállítva, akkor az elutasított kapcsolatot a &quot;biztonsági hírcsatorna tétel&quot; a Hírcsatornába irányítja. Ott letilthatod vagy engedélyezheted az IP címüket. Ugyanazon csomópont összes helyszinére vonatkozik. </p></body></html> @@ -3400,7 +3380,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + Ez a személyes Retroshare tanúsítványod. Ezt kell eljuttatnod a barátaidhoz @@ -3443,69 +3423,72 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Válaszd, ha hozzá szeretnéd adni ezt a kulcsot a kulcstartódhoz +Hasznos lehet akkor, ha +távoli üzeneteket szeretnél küldeni ennek a partnernek, + de nem veszed fel barátnak. Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + A tanúsítvány verziója rossz. Kérlek vedd figyelembe, hogy a v0.6 és a v0.5 hálózatok nem kompatibilisek egymással. Invalid node id. - + Érvénytelen csomópont azonosító. Auto-download recommended files - + Automatikusan töltse le az ajánlott fájlokat Can be used as direct source - + Közvetlen forrásként használható Require whitelist clearance to connect - + Fehérlistás engedélyezést követel meg a csatlakozáshoz Add IP to whitelist - + IP hozzáadása a fehérlistához No IP in this certificate! - + Ez a tanúsítvány nem tartalmaz IP-t! <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>Ez a tanúsítvány nem tartalmaz IP-t. A felfedezésre és a DHT-re vagy utalva, hogy megtaláld. Mivel fehérlistás engedélyezést kértél, ezért egy biztonsági figyelmeztetést fogsz kapni a Hírek fülön. Itt hozzáadhatod a partner IP-jét a fehérlistához.</p> Added with certificate from %1 - + Tanúsítvánnyal hozzáadva innen: %1 Paste Cert of your friend from Clipboard - + Barát tanúsítványának beillesztése a Vágólapról Certificate Load Failed:can't read from file %1 - + Tanúsítvány betöltése sikertelen: nem olvasható az alábbi fájl: %1 Certificate Load Failed:something is wrong with %1 - + Tanúsítvány betöltése sikertelen: valami gond van ezzel: %1 @@ -3582,13 +3565,13 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3598,7 +3581,7 @@ p, li { white-space: pre-wrap; } Invalid Peer ID - Helytelen partner ID + Érvénytelen partner azonosító @@ -3885,7 +3868,7 @@ p, li { white-space: pre-wrap; } Your Retroshare Node is configured Okay - A Retroshare kliensed megfelelően van beállítva + A Retroshare csomópontod megfelelően van beállítva @@ -3993,7 +3976,7 @@ p, li { white-space: pre-wrap; } They need a Certificate + Node for UDP connections to succeed - + Szükségük van egy Tanúsítványra + Csomópontra ahhoz, hogy az UDP kapcsolat sikeres legyen @@ -4014,12 +3997,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>A kör neve, a kapcsolattartó és a meghívott tagok listája látható lesz az összes meghívott számára. Ha a kör nem privát, akkor látható lesz a meghívott csomópontok szomszédos csomópontjai által is.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4029,7 +4012,7 @@ p, li { white-space: pre-wrap; } IDs - ID + Azonosító @@ -4045,22 +4028,22 @@ p, li { white-space: pre-wrap; } Invited Members - + Meghívott tagok <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + Ismert személyek ID - ID + Azonosító @@ -4070,47 +4053,47 @@ p, li { white-space: pre-wrap; } Name: - Név: + Név: Contact author: - + Kapcsolattartó: [Circle Admin] - + [Kör Admin] Distribution: - + Megosztás: <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Privát + Személyes <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + Csak a következő csoportok tagjai számára látható: @@ -4142,7 +4125,7 @@ p, li { white-space: pre-wrap; } Remove - + Eltávolítás @@ -4163,7 +4146,7 @@ p, li { white-space: pre-wrap; } Signed by known nodes - + Ismert csomópontok által aláírva @@ -4173,55 +4156,55 @@ p, li { white-space: pre-wrap; } PGP Identity - + PGP Személyazonosság Anon Id - Névtelen ID + Névtelen azonosító Circle name - + Kör neve Update - + Frissít Close - Bezárás + Bezár Create New Circle - + Új kör létrehozása Create - Létrehozás + Létrehoz PGP Linked Id - PGP-hez linkelt ID + PGP-hez linkelt azonosító Add Member - + Tag hozzáadása Remove Member - + Tag eltávolítása @@ -4235,12 +4218,12 @@ p, li { white-space: pre-wrap; } Group Name: - Csoport neve: + Csoport neve: Group ID: - + Csoport azonosító: @@ -4250,7 +4233,7 @@ p, li { white-space: pre-wrap; } To be defined - + Meghatározandó @@ -4287,9 +4270,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4396,12 +4379,12 @@ p, li { white-space: pre-wrap; } Generate mass data - + Adattömeg létrehozása Do you really want to generate %1 messages ? - + Valóban generálni szeretnél %1 üzenetet ? @@ -4411,7 +4394,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Csatornabejegyzés létrehozása @@ -4470,7 +4453,7 @@ p, li { white-space: pre-wrap; } Edit Message - + Üzenet szerkesztése @@ -4497,18 +4480,19 @@ p, li { white-space: pre-wrap; } Please choose Signing Id, it is required - Kérlek, válassz egy aláírás Id-t, ez szükséges. + Kérlek, válassz egy Aláírás azonosítót, ez szükséges. Cancel Forum Message - + Fórum üzenet visszavonása Forum Message has not been sent yet! Do you want to discard this message? - + A fórum-üzenetet még nem küldted el. +Törölni szeretnéd? @@ -4518,23 +4502,23 @@ Do you want to discard this message? No compatible ID for this forum - + Nem kompatibilis azonosító ehhez a fórumhoz None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Egyetlen személyazonosságod számára sem engedélyezett a hozzászólás ezen a fórumon. Ennek oka az lehet, hogy a fórum korlátozva van egy olyan körre, amely nem tartalmazza semelyik személyazonosságod, vagy pedig a fórum jelölők megkövetelik a PGP hitelesítésű azonosítókat. Generate mass data - + Adattömeg létrehozása Do you really want to generate %1 messages ? - + Valóban generálni szeretnél %1 üzenetet ? @@ -4544,12 +4528,12 @@ Do you want to discard this message? Post as - + Hozzászólás mint Congrats, you found a bug! - + Gratulálunk, találtál egy bugot! @@ -4557,12 +4541,12 @@ Do you want to discard this message? Create Chat Lobby - Chatszoba létrehozása + Társalgószoba létrehozása 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. - A csevegőszoba egy központosítatlan, névtelen helyszín a beszélgetésekhez. Az összes résztvevő megkapja az összes üzenetet. A szoba létrehozása után meghívhatod abba barátaidat a barátlistádról. + A társalgószoba egy központosítatlan, névtelen helyszín a beszélgetésekhez. Az összes résztvevő megkapja az összes üzenetet. A szoba létrehozása után meghívhatod abba barátaidat a barátlistádról. @@ -4577,7 +4561,7 @@ Do you want to discard this message? Visibility: - + Láthatóság: @@ -4592,12 +4576,12 @@ Do you want to discard 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 - + PGP hitelesítésű azonosító megkövetelése @@ -4607,7 +4591,7 @@ Do you want to discard this message? Select the Friends with which you want to group chat. - Válassz ki barátokat a csoportos csevegéshez. + Válassz ki barátokat a csoportos beszélgetéshez. @@ -4617,17 +4601,17 @@ Do you want to discard this message? Create Chat Room - + Társalgószoba létrehozása Put a sensible chat room name here - + Adj a társalgószobának egy kifejező nevet Set a descriptive topic here - + Add meg a témakör közérthető leírását. @@ -4637,7 +4621,7 @@ Do you want to discard this message? Identity to use: - + Használandó személyazonosság: @@ -4660,7 +4644,7 @@ Do you want to discard this message? Location ID: - Helyszín ID: + Helyszín azonosító: @@ -4740,42 +4724,42 @@ Do you want to discard this message? Node information - + Csomópont információ PGP Id : - + PGP azonosító : Friend nodes: - + Barát csomópontok: Copy certificate to clipboard - + Tanúsítvány másolása a vágólapra Save certificate to file - + Tanúsítvány mentése fájlként Node - + Csomópont Create new node... - + Új csomópont létrehozása... show statistics window - + Statisztika megjelenítése @@ -4783,7 +4767,7 @@ Do you want to discard this message? users - + felhasználók @@ -4796,7 +4780,7 @@ Do you want to discard 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> - + @@ -4822,7 +4806,7 @@ Do you want to discard this message? No peer found in DHT - + Nem található partner a DHT-ben @@ -4850,17 +4834,17 @@ Do you want to discard this message? Faster - Gyorsabb + Gyorsabb Average - Átlagos + Átlagos Slower - Lassabb + Lassabb @@ -4971,7 +4955,7 @@ Do you want to discard this message? PeerId - Partner ID + Partner azonosító @@ -5006,7 +4990,7 @@ Do you want to discard this message? RsId - RS ID + RS azonosító @@ -5047,7 +5031,7 @@ Do you want to discard this message? Relay Mode - Relay mód + Relé mód @@ -5082,17 +5066,17 @@ Do you want to discard this message? IP - IP + IP Search IP - + IP Keresés Copy %1 to clipboard - + %1 másolása a vágólapra @@ -5137,12 +5121,12 @@ Do you want to discard this message? RESTRICTED CONE NAT - + Címhez kötött NAT FULL CONE NAT - + Egy az egyben NAT @@ -5302,7 +5286,7 @@ Do you want to discard this message? RELAY END - Relay vége + RELÉ VÉGE @@ -5324,12 +5308,12 @@ Do you want to discard this message? Own Relay - Saját relay + Saját relé RELAY PROXY - RELAY PROXY + RELÉ PROXY @@ -5348,7 +5332,7 @@ Do you want to discard this message? Relays - + Relék @@ -5371,108 +5355,108 @@ Do you want to discard this message? Net Status: - + Hálózat állapota: Network Mode: - + Hálózati mód: Nat Type: - + NAT típusa: Nat Hole: - + NAT átjáró Connect Mode: - + Csatlakozás módja: Peer Address: - + Partner címe: Unreach: - + Elérhetetlen: Online: - + Elérhető: Offline: - + Kijelentkezett: DHT Peers: - + DHT partnerek: Disconnected: - + Lekapcsolódva: Direct: - + Közvetlen: Proxy: - + Proxy: Relay: - + Relé: Filter: - Szűrő: + Szűrő: Search Network - Keresés a hálózaton + Hálózat keresése Peers - Kapcsolatok + Partnerek Relay - Relay + Relé DHT Graph - + DHT gráf Proxy VIA - + Proxy ezen keresztül: Relay VIA - + Relé ezen keresztül: @@ -5758,22 +5742,22 @@ Do you want to discard this message? Patch - + Javítás C++ - + C++ Header - + Fejléc C - + C @@ -5791,7 +5775,7 @@ Do you want to discard this message? # Files - + # Fájlok @@ -5821,12 +5805,12 @@ Do you want to discard this message? Column %1 - + Oszlop-szám %1 Row %1 - + Sor-szám %1 @@ -5846,10 +5830,6 @@ Do you want to discard this message? Expand new messages Új üzenetek lenyitása - - Forum - Fórum - Load embedded images @@ -5858,12 +5838,12 @@ Do you want to discard this message? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Hangulatjelek megjelenítése (erőforrásigényes) @@ -5873,12 +5853,12 @@ Do you want to discard this message? Open each forum in a new tab - + Minden fórum külön lapon nyíljon meg Forums - + Fórumok @@ -5892,7 +5872,7 @@ Do you want to discard this message? ID - ID + Azonosító @@ -5902,33 +5882,33 @@ Do you want to discard this message? export friendlist - + barátlista mentése export your friendlist including groups - + barátlista mentése csoportok megtartásával import friendlist - + barátlista visszaállítása import your friendlist including groups - + barátlista visszaállítása a megtartott csoportokkal Show State - + Állapot megjelenítése Trusted nodes - + Megbízható csomópontok @@ -5960,7 +5940,7 @@ Do you want to discard this message? Chat - Csevegés + Beszélgetés @@ -5976,27 +5956,27 @@ Do you want to discard this message? Search - Keresés + Keresés Search ID - + Azonosító keresése Sort by state - + Rendezés állapot szerint Profile details - + Profil részletek Deny connections - + Csatlakozások megtagadása @@ -6021,17 +6001,17 @@ Do you want to discard this message? Send message to this node - + Üzenet küldése a csomópont számára Node details - + Csomópont részletei Recommend this node to... - + Ajánld ezt a csomópontot neki... @@ -6057,59 +6037,64 @@ Do you want to discard this message? Done! - + Kész! Your friendlist is stored at: - + A barátlistád tárolva itt: + (keep in mind that the file is unencrypted!) - + +(tartsd észben, hogy a fájl titkosítatlan!) Your friendlist was imported from: - + A barátlistád helyreállítva innen: + Done - but errors happened! - + Kész - de hibák történtek! at least one peer was not added - + +legalább egy partner nem lett hozzáadva at least one peer was not added to a group - + +legalább egy partner nem lett hozzáadva a csoporthoz Select file for importing your friendlist from - + Válaszd ki a visszaállítandó fájlt Select a file for exporting your friendlist to - + Válassz egy fájlt ahova mentésre kerül a barátlistád XML File (*.xml);;All Files (*) - + XML fájl (*.xml);;Minden fájl (*) @@ -6121,18 +6106,20 @@ at least one peer was not added to a group File is not writeable! - + A fájl nem írható! + File is not readable! - + A fájl nem olvasható! + Show Items - + Elemek megjelenítése @@ -6157,27 +6144,27 @@ at least one peer was not added to a group Node - + Csomópont Remove Friend Node - + Barát csomópontjának eltávolítása Do you want to remove this node? - + El szeretnéd távolítani ezt a csomópontot? Send message to whole group - + Üzenet elküldése a teljes csoportnak Send message - + Üzenet elküldése @@ -6185,42 +6172,42 @@ at least one peer was not added to a group Dialog - Párbeszéd + Párbeszéd Message: - Üzenet: + Üzenet: Recommend friends - Barátok ajánlása + Barát ajánlása To - + Neki Please select at least one friend for recommendation. - Kérlek, válassz ki az ajánláshoz legalább egy barátot. + Válassz legalább egy barátot az ajánláshoz! Please select at least one friend as recipient. - Kérlek, válassz ki legalább egy barátot címzettnek. + Válassz legalább egy fogadó barátot! Recommendation messages sent! - + Üzenet az ajánlásokkal elküldve! A recommendation message was sent to each of the chosen friends! - + Egy üzenet ajánlásokkal mindegyik kiválasztott barátodnak el lett küldve! @@ -6251,12 +6238,12 @@ at least one peer was not added to a group Sort by state - + Rendezés állapot szerint Filter only connected - + Csak a csatlakozottakat szűrjed @@ -6271,12 +6258,12 @@ at least one peer was not added to a group Mark all - Összes megjelölése + Jelöld mind Mark none - + Egyiket se jelöld @@ -6295,7 +6282,7 @@ at least one peer was not added to a group Clear Chat History - Csevegési előzmények törlése + Beszélgetés előzmények törlése @@ -6336,7 +6323,7 @@ at least one peer was not added to a group Save Chat History - Csevegési előzmények mentése + Beszélgetés előzmények mentése @@ -6347,12 +6334,12 @@ at least one peer was not added to a group Delete Chat History - Csevegési előzmények törlése + Beszélgetés előzmények törlése Deletes all stored and displayed chat history - Az összes tárolt és megjelenített csevegési előzmény törlése + Az összes tárolt és megjelenített beszélgetés előzmény törlése @@ -6378,7 +6365,7 @@ at least one peer was not added to a group <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;Hálózat</h1> <p>A Hálózat fül tartalmazza a barátaid Retroshare csomópontjait: pontosabban azokat a szomszédos Retroshare csomópontokat, akik kapcsolódtak hozzád. </p> <p>Csoportokba rendezheted őket, és így beállíthatod például azt, hogy mely csoportok férhessenek hozzá egy-egy fájlodhoz.</p> <p>Jobb oldalt 3 hasznos fület találsz: <ul> <li>Az Üzenőfal segítségével egyszerre küldhetsz üzenetet az összes csomópontnak</li> <li>A Hálózat gráf a felfedezés információit felhasználva megmutatja, hogy kikkel állasz kapcsolatban.</li> <li>A Kulcstartóban találhatók az összegyűjtött csomópontok kulcsai, leginkább a barátiad csomópontjain keresztül jutnak el hozzád ezek a kulcsok.</li> </ul> </p> @@ -6394,12 +6381,12 @@ at least one peer was not added to a group Network graph - + Hálózat gráf Set your status message here. - + Add meg az állapotüzenetedet. @@ -6419,14 +6406,6 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters Az összes adatnak legalább 3 karakter hosszúnak kell lennie - - Password (check) - Jelszó (ellenőrzés) - - - [Required] Type the same password again here. - [Szükséges] Írd be mégegyszer a jelszavadat. - Passwords do not match @@ -6440,13 +6419,13 @@ at least one peer was not added to a group Use BOB - + Használj BOB-t This password is for PGP - + Ez egy PGP jelszó @@ -6456,129 +6435,129 @@ at least one peer was not added to a group Node field is required with a minimum of 3 characters - + A csomópont mező legalább 3 karaktert kell tartalmazzon Failed to generate your new certificate, maybe PGP password is wrong! - + Az új tanúsítványod létrehozása meghiúsult, talán rossz PGP jelszót adtál meg. Options - Beállítások + Beállítások PGP Key Length - + PGP kulcs hossza <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + Alap csomópont TOR/I2P Hidden node - + TOR/I2P rejtett csomópont <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Meglévő profil használata Node name - + Csomópont neve <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + Profil mentése <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + Nyomás! TextLabel - + Szövegcimke Advanced options - + Haladó beállítások hidden address - + rejtett cím Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Csomópont és/vagy profil létrehozásához kattints ide Export profile - + Profil exportálása RetroShare profile files (*.asc) - + RetroShare profilfájlok (*.asc) Profile saved - + Profil mentve @@ -6587,131 +6566,135 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + A profilod sikeresen elmentve. +Titkosítva van. + +Most már átmásolhatod egy másik számítógépre +és az importálás gombbal betöltheted. Profile not saved - + A profil nem lett elmentve Your profile was not saved. An error occurred. - + Hiba történt. A profilodat nem sikerült elmenteni. Import profile - + Profil importálása Create new profile and new Retroshare node - + Új profil és Retroshare csomópont létrehozása Create new Retroshare node - + Új Retroshare csomópont létrehozása Tor/I2P address - + Tor/I2P cím Username - + Felhasználónév Chat name - + Társalgónév Password again - + Jelszó ismét <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P hivatkozás bekapcsolt BOB-val I2P instance address - + I2P hivatkozás címe hidden service address - + rejtett szolgáltatás címe RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + A profil nincs betöltve Your profile was not loaded properly: - + A profilod nem jól töltődött be: New profile imported - + Új profil importálva Your profile was imported successfully: - + Az új profilod sikeresen importálva: The GXS nickname is too short. Please input at least %1 characters. - + A GXS becenév túl rövid. Adj meg legalább %1 karaktert! The GXS nickname is too long. Please reduce the length to %1 characters. - + A GXS becenév túl hosszú. Csökkents a hosszát %1 karakterre! PGP key pair generation failure - + A PGP kulcspár létrehozása meghiúsult Profile generation failure - + A profil létrehozása meghiúsult Missing PGP certificate - + Hiányzó PGP tanusítvány @@ -6764,7 +6747,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + retroshare:// regisztrálása URL protokollként @@ -6774,22 +6757,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6809,22 +6792,22 @@ and use the import button to load it You have sufficient rights. - + A jogosultságaid megfelelőek. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6872,7 +6855,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6905,7 +6888,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:'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> @@ -6917,31 +6900,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> @@ -6954,7 +6937,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> - + @@ -6966,11 +6949,17 @@ 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: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 Friends' &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 a barátaid meghívót küldenek, kattints rá, hogy megnyisd a Barátok hozzáadása ablakot.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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 be az abalakba a barátaid tanúsítványait és vedd fel őket!</span></p></body></html> @@ -7035,7 +7024,7 @@ p, li { white-space: pre-wrap; } Here is your friends ID Certificate. - Itt láthatod a barátaid ID tanúsítványait. + Itt láthatod a barátaid azonosító tanúsítványait. @@ -7045,7 +7034,7 @@ p, li { white-space: pre-wrap; } and send them your ID Certificate to get securely connected. - és küld el a barátaidnak a te ID tanúsítványodat, hogy biztonságosan kapcsolódhassatok egymáshoz. + és küld el a barátaidnak a te azonosító tanúsítványodat, hogy biztonságosan kapcsolódhassatok egymáshoz. @@ -7065,7 +7054,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + Sok funkciója van, többek között beépített társalgó és üzenetküldő. @@ -7078,62 +7067,62 @@ p, li { white-space: pre-wrap; } GroupBox - + ID - ID + Azonosító Identity Name - + Azonosító név Destinaton - + Célállomás Data status - + Adatkapcsolat állapota Tunnel status - + Alagút állapota Stored data size - + Tárolt adatok mérete Receive time (secs ago) - + Beérkezés ideje (eltelt másodperc) Sending time (secs ago) - + Elküldés ideje (eltelt másodperc) Data hash - + HASH adatok Branching factor - + Details - Részletek + Részletek @@ -7143,12 +7132,12 @@ p, li { white-space: pre-wrap; } Pending packets - + Függőben levő csomagok Unknown - Ismeretlen + Ismeretlen @@ -7156,22 +7145,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Nyilvántartott kulcsok Routing matrix ( - + Útválasztási mátrix ( [Unknown identity] - + [Ismeretlen azonosító] : Service ID = - + : Szolgáltatás azonosító = @@ -7179,7 +7168,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - Csoportos csevegés mutatása + Csoportos beszélgetés mutatása @@ -7187,7 +7176,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + [Ismeretlen] @@ -7223,72 +7212,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7301,7 +7290,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7309,7 +7298,7 @@ p, li { white-space: pre-wrap; } Share - + Megosztás @@ -7319,12 +7308,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + @@ -7334,22 +7323,22 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7377,12 +7366,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Csökkenő sorbarendezés Sort Ascending Order - + Növekvő sorbarendezés @@ -7402,33 +7391,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Bejegyzések száma szerinti rendezés Sort by Unread - + Olvasatlanság szerinti rendezés You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Utolsó beküldés + Utolsó bejegyzés Never - Soha + Soha @@ -7438,7 +7427,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + Feliratkozás üzenetek letöltéséhez és olvasásához @@ -7565,7 +7554,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7585,7 +7574,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + Válassz a csatornához letöltési könyvtárat @@ -7595,18 +7584,18 @@ p, li { white-space: pre-wrap; } Set download directory - + Állítsd be a letöltési könyvtárat [Default directory] - + Specify... - Meghatározás... + @@ -7629,7 +7618,7 @@ p, li { white-space: pre-wrap; } Open folder - + Mappa megnyitása @@ -7649,17 +7638,17 @@ p, li { white-space: pre-wrap; } Checking - + Ellenőrzés Are you sure that you want to cancel and delete the file? - + Can't open folder - + A mappa nem nyitható meg @@ -7687,7 +7676,7 @@ p, li { white-space: pre-wrap; } Published - + Közzétéve @@ -7725,7 +7714,7 @@ p, li { white-space: pre-wrap; } Update Channel - + Csatorna frissítése @@ -7777,12 +7766,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Új hozzászólás: Comment Value - + @@ -7809,7 +7798,7 @@ p, li { white-space: pre-wrap; } Edit - Szerkesztés + Szerkesztés @@ -7891,7 +7880,7 @@ p, li { white-space: pre-wrap; } Comments - + Hozzászólások @@ -7920,7 +7909,7 @@ p, li { white-space: pre-wrap; } Add new post - + Új hozzászólás @@ -7930,7 +7919,7 @@ p, li { white-space: pre-wrap; } Search channels - + Keresés a csatornákban @@ -7950,7 +7939,7 @@ p, li { white-space: pre-wrap; } Search Message - + Üzenet keresése @@ -7960,7 +7949,7 @@ p, li { white-space: pre-wrap; } Search Filename - + Keresés a fájlok között @@ -7970,32 +7959,32 @@ p, li { white-space: pre-wrap; } Never - Soha + Soha Public - Publikus + Nyilvános Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -8010,33 +7999,33 @@ p, li { white-space: pre-wrap; } Show feeds - + Show files - + Mutasd a fájlokat Administrator: - + Adminisztrátor: Last Post: - + Utolsó bejegyzés unknown - ismeretlen + ismeretlen Distribution: - + Megosztás @@ -8051,7 +8040,7 @@ p, li { white-space: pre-wrap; } Subscribers - + Feliratkozottak @@ -8061,7 +8050,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8077,48 +8066,48 @@ p, li { white-space: pre-wrap; } Details - Részletek + Részletek Remove Item - Eltávolítás + Tétel törlése for identity - + előle: You received a membership request for circle: - + Grant membership request - + Tagsági kérelem jóváhagyása Revoke membership request - + Tagsági kérelem visszavonása You received an invitation for circle: - + Accept invitation - + Meghívó elfogadása Received event from unknown Circle: - + @@ -8154,7 +8143,7 @@ p, li { white-space: pre-wrap; } Voter ID: - Szavazó ID: + Szavazó azonosító: @@ -8212,7 +8201,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + Hozzászólás másolása @@ -8237,7 +8226,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8283,17 +8272,17 @@ mielőtt hozzászólhatsz Update Forum - + Fórum frissítése Add Forum Admins - + Fórum adminisztrátorok hozzáadása Select Forum Admins - + Fórum adminisztrátorok kiválasztása @@ -8372,7 +8361,7 @@ mielőtt hozzászólhatsz In Reply to: - + Válasz címzettje: @@ -8382,7 +8371,7 @@ mielőtt hozzászólhatsz Forum Feed - + @@ -8415,7 +8404,7 @@ mielőtt hozzászólhatsz New Thread - Új fonál + Új szál @@ -8449,7 +8438,7 @@ mielőtt hozzászólhatsz Save image - + Kép mentése @@ -8510,7 +8499,7 @@ 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> - + @@ -8575,54 +8564,54 @@ mielőtt hozzászólhatsz [Banned] - + [Letiltva] [unknown] - + [ismeretlen] Public - Publikus + Nyilvános Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + Szemétszűrő [ ... Redacted message ... ] - + [ ... Szerkesztett üzenet ... ] @@ -8647,22 +8636,22 @@ mielőtt hozzászólhatsz <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + <p><font color="#ff0000"><b>Az üzenet szerzője (azonosító: %1) bannolva van.</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> - + <p><b><font color="#ff0000">Kényszerítheted az üzenetek láthatóságát és továbbítását, ha módosítod az Azonosítóra adott véleményed a Személyek fülön.</font></b></p> @@ -8705,127 +8694,128 @@ mielőtt hozzászólhatsz New thread - + Új szál Read status - + Elolvasott / nem olvasott Edit - Szerkesztés + Szerkesztés Reply to author with private message - + Give positive opinion - + Pozitív vélemény This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Semleges vélemény Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Adj negatív értékelést Show author in people tab - + Mutasd a szerzőt a Személyek fülön Author's reputation - + Szerző megitélése Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Utolsó bejegyzés Never - Soha + Soha Synchronization - + Szinkronizálás Storage - + Tárolás Information for this identity is currently missing. - + A személyazonossághoz tartozó információ jelenleg hiányzik. You have banned this ID. The message will not be displayed nor forwarded to your friends. - + Tiltottad ezt az azonosítót. Az üzenet nem lesz +megjelenítve és nem lesz továbbítva a barátaid számára. You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Legutóbbi) (Old) - + (Régi) You cant act on the author to a non-existant Message - + @@ -8850,17 +8840,17 @@ prevents the message to be forwarded to your friends. Forum name - + Fórum címe Subscribers - + Feliratkozottak Posts (at neighbor nodes) - + @@ -8870,7 +8860,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8886,7 +8876,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -8990,10 +8980,6 @@ prevents the message to be forwarded to your friends. Public Publikus - - Only For Your Friends - Csak a barátaidnak - Publish Signatures @@ -9037,7 +9023,7 @@ prevents the message to be forwarded to your friends. If No Publish Signature - + @@ -9057,29 +9043,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Hozzászólások: + Hozzászólások TextLabel - + Szövegcimke Distribution: - + Megosztás Anti Spam: - + @@ -9090,45 +9076,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Engedélyezett Disallowed - + Tiltott Message tracking - + Üzenet követése PGP signature required - + PGP hitelesítés szükséges Never - Soha + Soha Only friends nodes in group - + @@ -9138,7 +9124,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + Szükség van PGP aláírásra egy ismert azonosítótól @@ -9148,38 +9134,38 @@ prevents the message to be forwarded to your friends. Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Tulajdonos Set a descriptive description here - + Info - + Információ ID - ID + Azonosító @@ -9189,52 +9175,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + Hozzászólási engedélyek <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Mind engedélyezve Defavor unsigned IDs - + Aláíratlan azonosítók eltávolítása a kedvencek közül Defavor unsigned IDs and IDs from unknown nodes - + Aláíratlan és ismeretlen csomóponthoz tartozó azonosítók eltávolítása a kedvencek közül @@ -9244,7 +9230,7 @@ prevents the message to be forwarded to your friends. Posts - + Bejegyzések @@ -9254,7 +9240,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + Gxs azonosító címke @@ -9297,69 +9283,69 @@ prevents the message to be forwarded to your friends. Show Details - + Mutasd a részleteket Edit Details - + Részletek szerkesztése Synchronise posts of last... - + Add meg a szinkronizálandó elmúlt időtartamot... 5 days - + 5 nap 2 weeks - + 2 hét 1 month - + 1 hónap 3 months - + 3 hónap 6 months - + 6 hónap 1 year - + 1 év Indefinitly - + Végtelen Store posts for at most... - + Share publish permissions - + Nyilvános engedélyek megosztása @@ -9417,43 +9403,43 @@ prevents the message to be forwarded to your friends. [Banned] - + [Letiltva] Authentication - + Azonosítás unknown Key - + ismeretlen kulcs anonymous - + névtelen Identity&nbsp;name - + Személyazonosság&nbsp;név Identity&nbsp;Id - + Személyazonosság&nbsp;azonosító Signed&nbsp;by - + [Unknown] - + [Ismeretlen] @@ -9474,107 +9460,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Útválasztó statisztikái + GroupBox - + ID - ID + Azonosító Destination - Célpont + Data status - + Adatkapcsolat állapota Data size - + Data hash - + HASH adatok Sending time (secs ago) - + Elküldés ideje (eltelt másodperc) Group ID - + Csoportazonosító Gxs Transport Groups: - + Group ID / Author - + Csoportazonosító / Szerző Number of messages / Publish TS - + Local size of data - + Helyi adatméret Subscribed - Feliratkozva + Feliratkozva Popularity - Népszerűség + Népszerüség Details - Részletek + Részletek Unknown Peer - Ismeretlen partner + Ismeretlen kapcsolat Pending data items - + Függőben levő tételek Unknown - Ismeretlen + Ismeretlen Yes - Igen + Igen No - Nem + Nem @@ -9582,42 +9568,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Azonosított csatornák Tunnel ID: %1 - + Alagút azonosító: %1 from: %1 - + to: %1 - + status: %1 - + állapot: %1 total sent: %1 bytes - + elküldve: %1 byte total recv: %1 bytes - + fogadva: %1 byte Unknown Peer - Ismeretlen partner + Ismeretlen kapcsolat @@ -9804,7 +9790,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + A segítség tartalomjegyzékének betöltése nem sikerült: @@ -9819,21 +9805,37 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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-family:'MS Shell Dlg 2'; font-weight:600;">A RetroShare egy Nyílt Forrású platformok közötti, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">privát és biztonságos decentralizált kommunikációt nyújtó szolgáltatás. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Segítségével biztonságosan oszthatod meg a barátlistádat, mert </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">egy megbízhatósági hálózat: "web-of-trust" által hitelesíti a partnereket és OpenSSL használatával titkosít minden kommunikációt. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">A RetroShare lehetőséget biztosít fájlmegosztásra, beszélgetésre, üzenetküldésre valamint csatornák használatára</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Hasznos linkek további információhoz:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Fórum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Projekt Oldala</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Csapat Blogja</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Fejlesztői Twitter</span></a></li></ul></body></html> @@ -9855,18 +9857,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -9889,7 +9891,7 @@ p, li { white-space: pre-wrap; } Libraries - + Könyvtárak @@ -9922,7 +9924,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - + A segítség fájl megnyitása nem sikerült: @@ -9930,114 +9932,116 @@ p, li { white-space: pre-wrap; } Form - + Forma Did you receive a certificate from a friend? - + Kaptál egy tanúsítványt egy barátodtól? Add friends certificate - + Ismerősök tanusítványainak hozzáadása. Add certificate file - + Tanusítvány-fájl hozzáadása Share your RetroShare Key - + Saját RetroShare kulcsod megosztása ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + Az alábbi szöveghalmaz a te RetroShare tanusítványod. Küld el a barátaidnak. Open Source cross-platform, private and secure decentralized communication platform. - + Nyílt Forrású platformok közötti, +privát és biztonságos decentralizált kommunikációt nyújtó szolgáltatás. + Launch startup wizard - + Nyisd meg az indító varázslót Do you need help with RetroShare? - + Segítségre van szükséged? Open Web Help - + Nyisd meg a segítség honlapot Copy your Cert to Clipboard - Tanúsítványod másolása a vágólapra + Save your Cert into a File - Tanúsítványod mentése fájlba + Mentsd el egy fájlba a tanusítványodat Send via Email - + Küld el emailben Invite via WebMail - + Küldj meghívót webmailben Recommend friends to each others - + Javasolj ismerősöket a többieknek <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - RetroShare meghívás + RetroShare meghívó Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - A tanúsítványod a vágólapra lett másolva. Illeszd be és küld el a barátodnak emailben vagy oszd meg vele egyéb módon + Save as... - Mentés másként... + Mentés mint... RetroShare Certificate (*.rsc );;All Files (*) - RetroShare tanúsítvány (*.rsc );;Minden fájl (*) + Home - Kezdőlap + Kezdőlap @@ -10046,32 +10050,32 @@ private and secure decentralized communication platform. Person Details - + Személyes adatok Identity Info - + Személyazonosság információ Friends votes: - + Ismerősők szavazatai <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + Tulajdonos csomópont azonosító : @@ -10081,101 +10085,101 @@ p, li { white-space: pre-wrap; } Owner node name : - + Csomópont tulajdonos neve: Identity name : - + Személyazonosság név : Identity ID : - + Személyazonosság azonosító : Last used: - + Utoljára használva: Ban-option: - + Letiltási opció: Auto-Ban all identities signed by the same node - + Automatikusan bannolj minden személyazonosságot amelyet ugyanez a csomópont írt alá Your Avatar Click here to change your avatar - + Saját avatár Send Invite - + Meghívó küldése Positive votes - + Elismerő szavazatok 0 - 0 + Negative votes - + Bíráló szavazatok <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: - + A véleményed: Negative - + rossz Neutral - + semleges 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: - + Általánosan [unverified] - + [hitelesítetlen] @@ -10185,102 +10189,102 @@ p, li { white-space: pre-wrap; } Anonymous Id - Névtelen Id + Névtelen azonosító Identity owned by you, linked to your Retroshare node - + A te személyazonosságod, linkelve a Retroshare csomópontodhoz Anonymous identity, owned by you - + A te személyazonosságod, Álnév Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + Névtelen személyazonosság +50 Known PGP - + 50-nél több ismert PGP +10 UnKnown PGP - + 10-nél több ismeretlen PGP +5 Anon Id - + +5 Névtelen azonosító positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Van egy barát felkérésed Respond now: - + Válasz most: Thanks, <br> - + Kösz, <br> @@ -10304,7 +10308,7 @@ p, li { white-space: pre-wrap; } Anonymous Id - Névtelen Id + Névtelen azonosító @@ -10314,156 +10318,156 @@ p, li { white-space: pre-wrap; } Create new circle - + Hozz létre új kört Persons - + Személyek Votes - + Szavazatok Person - + Személy Close - Bezárás + Bezárás Ban-option: - + Letiltási opció: Auto-Ban all identities signed by the same node - + Automatikusan bannolj minden Személyazonosságot amelyet ugyanez a csomópont írt alá Friend votes: - + Ismerős szavazatai: Positive votes - + Elismerő szavazatok 0 - 0 + Negative votes - + Bíráló szavazatok Usage statistics - + Használati statisztika Circles - Körök + Körök Circle name - + Kör neve Membership - Tagság + Tagság Public Circles - Nyilvános köreim + Nyilvános körök Personal Circles - Személyes köreim + Személyes körök Edit identity - Személyazonosság szerkesztése + Személyazonosság szerkesztése Delete identity - + Személyazonosság törlése Chat with this peer - + Beszélgetés ezzel a partnerrel Launches a distant chat with this peer - + Távoli beszélgetést kezdeményez ezzel a partnerrel Owner node ID : - + Tulajdonos csomópont azonosító : Identity name : - + Személyazonosság név : () - + () Identity ID - + Személyazonosság azonosító Send message - + Üzenet elküldése Identity info - + Személyazonosság információ Identity ID : - + Személyazonosság azonosító : Owner node name : - + Csomópont tulajdonos neve: Create new... - + Új létrehozása @@ -10473,57 +10477,57 @@ p, li { white-space: pre-wrap; } Send Invite - + Meghívó küldése <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: - + A véleményed: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + Negative - + rossz Neutral - + semleges 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: - + Általánosan @@ -10533,197 +10537,197 @@ p, li { white-space: pre-wrap; } ID - ID + Azonosító Search ID - + Azonosító keresése This identity is owned by you - + Ez a személyazonosság a tiéd My own identities - + Saját személyazonosságaim My contacts - + Kapcsolataim Show Items - + Elemek megjelenítése Owned by myself - + Linked to my node - + Other circles - + Más körök Circles I belong to - + Circle ID: - + Kör azonosító: Visibility: - + Láthatóság: Private (only visible to invited members) - + Magán (csak a meghívottak láthatják) Only visible to full members of circle - + Public - Publikus + Nyilvános Your role: - + A szereped: Administrator (Can edit invite list, and request membership). - + Adminisztrátor (szerkesztheti a meghívottak névsorát és tagságot kérelmezhet) User (Can only request membership). - + Felhasználó (csak tagságot kérelmezhet) Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Tagsági állapotod: Full member (you have access to data limited to this circle) - + Teljes jogú (hozzáférsz a jelen körre korlátozott adatokhoz) Not a member (do not have access to data limited to this circle) - + Nem-tag (nem férsz hozzá a kör adataihoz) Identity ID: - + Személyazonosság azonosító: Status: - Állapot: + Állapot: Full member - + Teljes jogú tag Invited by admin - + Az admin által meghívva Subscription request pending - + Feliratkozási kérelem függőben unknown - ismeretlen + ismeretlen Invited - + Meghívott Subscription pending - + Feliratkozás függőben Member - + Tag Edit Circle - Kör szerkesztése + Kör szerkesztése See details - + Részletek megtekintése Request subscription - + Feliratkozási kérelem Accept circle invitation - + Kör-meghívó elfogadása Quit this circle - + Kilépés a körből Cancel subscribe request - + Feliratkozási kérelem visszavonása @@ -10731,294 +10735,297 @@ p, li { white-space: pre-wrap; } for identity - + ehhez a személyazonossághoz Revoke this member - + Tagság megvonása Grant membership - + Tagság megadása -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + +Ennek a személyazonosságnak nem biztonságos az ujjlenyomata (valószínűleg túl régi). +Szabadulj meg tőle és készíts egy újat. +Ezek a személyazonosságok hamarosan kikerülnek a támogatásból. [Unknown node] - + [Ismeretlen csomópont] Unverified signature from node - + A csomópont aláírása nem hitelesített Unchecked signature - + Ellenőrizetlen aláírás [unverified] - + [hitelesítetlen] Identity owned by you, linked to your Retroshare node - + A te személyazonosságod, linkelve a Retroshare csomópontodhoz Identity owned by you, linked to your Retroshare node but not yet validated - + A te személyazonosságod, linkelve a Retroshare csomópontodhoz de még nincs érvényesítve Anonymous identity, owned by you - + A te személyazonosságod, névtelen Anonymous identity - + Névtelen személyazonosság Message in chat room %1 - + information - + Információ This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + A személyazonosság a vágólapra lett másolva. Illeszd be egy e-mailbe vagy egy üzenetbe, hogy eljuttasd valakihez! Copy identity to clipboard - + Személyazonosság másolása a vágólapra Send invite? - + Küldesz meghívót Do you really want send a invite with your Certificate? - + Banned - + Letiltva <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Személyazonosságok</h1> <p>Ezen a fülön készíthetsz új vagy szerkesztheted a már meglévő <b>ál-névtelen személyazonosságokat</b>, és <b>köröket</b>.</p> <p>A <b>személyazonosságokat</b> használjuk az adataid biztonságos azonosításához: aláírják az üzeneteid a társalgószobákban, a fórum- és csatorna hozzászólásaidat, visszajelzést kapnak a Retroshare beépített e-mail rendszerén keresztül, hozzászólhatsz csatorna bejegyzésekhez, biztonságos alagutakon keresztül beszélgethetsz, stb.</p> <p>Személyazonosságaidat<b>aláírhatod</b> a Retroshare csomópontod tanúsítványával. Az aláírt Személyazonosságok jobban ellenőrizhetőbbek ezért megbízhatóbbnak számíthatnak, ugyanakkor hozzá vannak kapcsolva a csomópontod IP címéhez.</p> <p>Az úgynevezett<b>Álnevek</b> segítségével névtelenséged megőrzésével léphetsz kapcsolatba a többiekkel. Nem visszakereshető, ezáltal senki sem tudhatja, hogy pontosan kihez is tartozik egy ilyen személyazonosság.</p> <p>A <b>Körök</b> tulajdonképpen a hálózat személyazonosságainak (Álnév típusú, vagy aláírt) részhalmazai. Felhasználhatók arra, hogy szigorítsuk a hozzáférést egy fórumhoz, csatornához, stb. </p> <p>Egy <b>kör</b> szűkíthető további körökkel, ezáltal láthatatlanná téve bizonyos tartalmakat olyanok számára akik nem tagjai a szűkebb köröknek. Sőt egy kör önmaga is lehet korlátozott, ez azt jelenti, hogy csak a meghívott személyek számára lesz látható a tartalom.</p> Unknown ID: - + Ismeretlen azonosító: positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Csatornák + Csatornák Forums - + Fórumok Posted - Beküldve + Chat - Csevegés + Beszélgetés Unknown - Ismeretlen + Ismeretlen [Unknown] - + [Ismeretlen] Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Távoli üzenet aláírásának hitelesítése. Distant message signature creation. - + Signature validation in distant tunnel system. - + Aláírás hitelesítése távoli alagút rendszeren. Signature in distant tunnel system. - + Update of identity data. - + Személyazonosság adat frissítése. Generic signature validation. - + Általános aláírás hitelesítés. Generic signature. - + Általános aláírás Generic encryption. - + Általános titkosítás Generic decryption. - + Titkosítás feloldása (általános) Membership verification in circle %1. - + Add to Contacts - + Hozzáadás a kapcsolatokhoz Remove from Contacts - + Törlés a kapcsolatok közül Set positive opinion - + Dicsérő vélemény Set neutral opinion - + Semleges vélemény Set negative opinion - + Rossz vélemény Distant chat cannot work - + A távoli beszélgetés nem működik Error code - + Hibakód Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -11026,98 +11033,98 @@ These identities will soon be not supported anymore. People - + Személyek Your Avatar Click here to change your avatar - + Saját avatár Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Beszélgetés ezzel a személlyel Chat with this person as... - + Beszélgetés ezzel a személlyel mint... Distant chat refused with this person. - + A távoli beszélgetés nem engedélyezett ezzel a személlyel. Last used: - + Utoljára használva: +50 Known PGP - + 50-nél több ismert PGP +10 UnKnown PGP - + 10-nél több ismeretlen PGP +5 Anon Id - + +5 Névtelen azonosító Do you really want to delete this identity? - + Tényleg törölni szeretnéd ezt a személyazonosságot? Owned by - + Node name: - + Node Id : - + Csomópont azonosító : Really delete? - + Tényleg törlöd? @@ -11130,7 +11137,7 @@ These identities will soon be not supported anymore. Key ID - Kulcs ID + Kulcs azonosító @@ -11145,7 +11152,7 @@ These identities will soon be not supported anymore. PGP Id - PGP id + PGP azonosító @@ -11190,12 +11197,12 @@ These identities will soon be not supported anymore. Error KeyID invalid - Rossz kulcsID + Hiba, érvénytelen Kulcs azonosító Unknown GpgId - Ismeretlen GPGID + Ismeretlen Gpg azonosító @@ -11229,7 +11236,7 @@ These identities will soon be not supported anymore. RM - + Eltávolítás @@ -11240,32 +11247,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Saját avatár Set Avatar - + Avatár beállítása Linked to your profile - + 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. - + Rendelkezhetsz egy vagy több személyazonossággal. Írhatsz velük társalgószobákba, hozzászólhatsz fórumokhoz és csatorna bejegyzésekhez. Végpontként viselkednek távoli beszélgetések valamint Retroshare távoli üzenetküldés esetén. The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11278,12 +11285,12 @@ These identities will soon be not supported anymore. KeyId - Kulcs ID + Kulcs azonosító GXSId - + GXS azonosító @@ -11295,25 +11302,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + GXS azonosító: PGP id: - + PGP azonosító: @@ -11362,17 +11369,17 @@ These identities will soon be not supported anymore. Save image - + Kép mentése Cannot save the image, invalid filename - + Kép mentése sikertelen, érvénytelen fájlnév Not an image - + Ez nem kép @@ -11401,21 +11408,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Megosztás valamelyik csatornán... Share on forum... - - - - Recommend in a message to - Ajánlása üzenetben + Megosztás valamelyik fórumon... @@ -11524,7 +11527,7 @@ These identities will soon be not supported anymore. Open Messenger - + Üzenő megnyitása @@ -11649,27 +11652,27 @@ These identities will soon be not supported anymore. Statistics - + Statisztika Show web interface - + Beépített böngésző megnyitása The disk space in your - + directory is running low (current limit is - + Really quit ? - + Tényleg kilépsz? @@ -11785,22 +11788,22 @@ These identities will soon be not supported anymore. Address list: - + Címek listája: Recommend this friend - + Set Text color - + Szövegszin beállítása Set Text background color - + Szöveg háttérszinének beállítása @@ -11900,17 +11903,17 @@ These identities will soon be not supported anymore. All addresses (mixed) - + Minden cím (vegyes) All people - + Minden személy My contacts - + Kapcsolataim @@ -12160,7 +12163,7 @@ Szeretnéd piszkozatként menteni az üzenetet? Details - Részletek + Részletek @@ -12213,17 +12216,17 @@ Szeretnéd menteni az üzenetet? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Van egy barát felkérésed Respond now: - + Válasz most: @@ -12238,73 +12241,73 @@ Szeretnéd menteni az üzenetet? Friend Nodes - + Barát csomópontok 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> - + Kösz, <br> Distant identity: - + Távoli személyazonosság: [Missing] - + [Hiányzik] Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Hozz létre egy személyazonosságot, hogy aláírd a távoli üzeneteket, vagy töröld a távoli partnereket a cél listáról. Node name & id: - + Csomópont név & azonosító: @@ -12327,7 +12330,7 @@ Szeretnéd menteni az üzenetet? Accept encrypted distant messages from - + @@ -12389,10 +12392,6 @@ Szeretnéd menteni az üzenetet? Edit Tag Címke szerkesztése - - Message - Üzenet - Distant messages: @@ -12406,7 +12405,7 @@ Szeretnéd menteni az üzenetet? Mail - + Levél @@ -12470,7 +12469,7 @@ Szeretnéd menteni az üzenetet? Send Invite - + Meghívó küldése @@ -12520,12 +12519,12 @@ Szeretnéd menteni az üzenetet? Send invite? - + Küldesz meghívót? Do you really want send a invite with your Certificate? - + @@ -12556,12 +12555,12 @@ Szeretnéd menteni az üzenetet? Hide the attachment pane - + Csatolmány mező elrejtése Show the attachment pane - + Mutasd a melléklet ablakot @@ -12843,7 +12842,7 @@ Szeretnéd menteni az üzenetet? Buttons Text Beside Icon - Gombok szöveggel és ikonnal + Szöveg az ikonok mellett @@ -12985,7 +12984,7 @@ Szeretnéd menteni az üzenetet? <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> - + @@ -13082,7 +13081,7 @@ Szeretnéd menteni az üzenetet? This message goes to a distant person. - + @@ -13116,12 +13115,12 @@ Szeretnéd menteni az üzenetet? This message comes from a distant person. - + Mail - + Levél @@ -13147,17 +13146,17 @@ Szeretnéd menteni az üzenetet? Paste as plain text - + Beillesztés sima szövegként Spoiler - + Select text to hide, then push this button - + Jelöld ki az elrejtendő szöveget és nyomd meg a gombot @@ -13175,7 +13174,7 @@ Szeretnéd menteni az üzenetet? Send Invite - + Meghívó küldése @@ -13211,12 +13210,12 @@ Szeretnéd menteni az üzenetet? from - tőle + Reply to invite - + Válaszolj a meghívásra @@ -13246,12 +13245,12 @@ Szeretnéd menteni az üzenetet? Send invite? - + Küldesz meghívót? Do you really want send a invite with your Certificate? - + @@ -13324,22 +13323,6 @@ Szeretnéd menteni az üzenetet? Name Név - - Did I authenticated peer - Hitelesítettem a partnert? - - - Did I sign his PGP key - Aláírtam a PGP kulcsát - - - Cert Id - Tanúsítávny ID - - - Last used - Utoljára használt - Clear @@ -13403,7 +13386,7 @@ Szeretnéd menteni az üzenetet? Peer ID - Partner ID + Partner azonosító @@ -13417,7 +13400,7 @@ Szeretnéd menteni az üzenetet? - 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. @@ -13460,52 +13443,6 @@ A biztonság kedvéért a kulcstartód ezt megelőzően el lett mentve egy fájl Cannot create backup file. Check for permissions in pgp directory, disk space, etc. 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 - - - PGP key signed by you - PGP kulcs általad aláírva - - - Marginally trusted peer - Részlegesen megbízható partner - - - Fully trusted peer - Teljesen megbízható partner - - - Untrusted peer - Nem bizalmas partner - - - Last hour - Utolsó óra - - - Today - Ma - - - Never - Soha - - - %1 days ago - %1 nappal ezelőtt - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - hitelesített téged. -Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése' menüt, hogy elfogadd a kérést. - - - yourself - magad - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13514,34 +13451,34 @@ Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése& Export/create a new node - + Trusted keys only - + Csak megbízható kulcsok Search name - + Név keresése Search peer ID - + Partner azonosító keresése Profile details... - + Profil részletei Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13572,7 +13509,7 @@ Reported error: Freeze - + Befagyasztás @@ -13608,7 +13545,7 @@ Reported error: Log entries - + Naplóbejegyzések @@ -13628,22 +13565,22 @@ Reported error: Newest on top - + A legújabb felül Oldest on top - + A legrégibb felül <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + Napló @@ -13682,7 +13619,7 @@ Reported error: Chat Room - + Társalgószoba @@ -13714,32 +13651,32 @@ Reported error: Ip security - + IP biztonság Friend Connected - Barát bejelentkezett + Kapcsolódó ismerős Circles - Körök + Körök Links - + Hivatkozások Mails - + Levelek Chats - + Társalgószobák @@ -13754,42 +13691,42 @@ Reported error: Private Chat - Privát csevegés + Privát beszélgetés Group Chat - Csoportos csevegés + Csoport beszélgetés Chat rooms - + Társalgószobák Chat Rooms - + Társalgószobák Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Kis- és nagybetű érzékeny + Kis- és nagybetű érzékeny @@ -13829,7 +13766,7 @@ 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> - + @@ -13859,12 +13796,12 @@ Reported error: Disable All Toasters - + Disable All Toaster temporarily - + @@ -13874,12 +13811,12 @@ Reported error: Systray - + Rendszertálca Count all unread messages - + @@ -13887,17 +13824,17 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Alá kell írnod a fórum- vagy társalgószobabeli személyazonosságodat. @@ -13907,7 +13844,7 @@ Reported error: Please enter your Retroshare passphrase - + @@ -13963,7 +13900,7 @@ Reported error: 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). - + Ahhoz, hogy a társalgószobák megfelelően működjenek, a számítógép órájának pontosnak kell lennie. Kérlek ellenőrizd (Lehetséges időeltérést tapasztaltunk a barátaidhoz képest). @@ -13998,7 +13935,7 @@ Reported error: - 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 @@ -14010,13 +13947,13 @@ Reported error: <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + <p>Figyelmeztetés: Ez a működési mód kikapcsolja az alagút szolgáltatást. Ez azt jelenti, hogy nem kezdeményezhetsz távoli beszélgetést, névtelenül nem tölthetsz le fájlokat és az üzenet szolgáltatás lassabb lesz.</p><p>Ez a beállítás újraindítás után lesz érvényben, szóval ne felejtsd el, hogy megváltoztattad!</p> Turtle routing disabled! - + @@ -14029,37 +13966,37 @@ Reported error: Profile info - + Profil adatok Name : - + Név : Fingerprint : - + Ujjlenyomat <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 - + @@ -14069,7 +14006,7 @@ Reported error: No trust - + @@ -14089,46 +14026,46 @@ Reported error: This profile has signed your own profile key - + Key signatures : - + Kulcs aláírások: <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;">A barátod kulcsának aláírása alkalmas arra, hogy kifejezd a bizalmad iránta: ez egyfajta segítség is a többiek számára. Az aláírások kriptográfiailag bizonyítják, hogy az alábbi kulcsok hitelesnek ismerik el az aktuális PGP kulcsot.</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;"> +</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 key - + Írd alá a kulcsot PGP key - + PGP kulcs These options apply to all nodes of the profile: - + Ezek a beállítások a következő profil összes csomópontjára érvényesek: <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;">A barátod kulcsának aláírása alkalmas arra, hogy kifejezd a bizalmad iránta és ezt jelezd a többiek felé. Ez segíthet nekik eldönteni, hogy elfogadják-e a kapcsolódást az adott kulcs tulajdonosától. Egy kulcs aláírása csak egy lehetőség, de visszavonhatatlan. Ezért fontold meg és dönts okosan.</span></p></body></html> @@ -14138,32 +14075,32 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> - + Deny connections - + Csatlakozások megtagadása <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 - + Kapcsolatok elfogadása Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14173,53 +14110,53 @@ p, li { white-space: pre-wrap; } Options - Beállítások + Beállítások <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">A Retroshare időnként ellenőrzi a barátlistád kereshető fájlokért, melyek megegyeznek az átviteli fájlokkal, azért, hogy közvetlen fájlátvitel valósulhasson meg. Ebben az esetben a barátod tudni fogja, hogy letöltöd azt a fájlt.</p><p align="justify">Hogy elkerüld ezt a viselkedést, és ki szeretnéd hagyni ebből ezt a barátodat, akkor szüntesd meg a doboz kijelölését. Továbbra is lehetőséged lesz a fájl letöltésére tőle, ehhez azonban előbb igényelned kell azt. Például az adott fájl manuális letöltésével a barátod megosztott mappájából. Ez a beállítás egy adott csomóponthoz tartozó összes helyszínre érvényes lesz.</p></body></html> Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + <html><head/><body><p>Ez az opció lehetővé teszi, hogy önműködően letöltsd az ennek a csomópontnak valamelyik üzenetben javasolt fájlt. Arra is használhatod, hogy saját csomópontjaid között fájlokat továbbíts. Ugyanazon csomópont összes helyszinére vonatkozik.</p></body></html> Auto-download recommended files from this node - + A csomópont ajánlott fáljainak önműködő letöltése <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. Applies to all locations of the same node.</p></body></html> - + <html><head/><body><p>Azon ismerősök, akiknél ez a beállítás szerepel, nem tudnak kapcsolódni, ha a címük hiányzik az engedélyezettek listájáról. Ez védelmet nyújt az adatforgalom-átirányítás jellegű támadásokkal szemben. Ha ez van beállítva, akkor az elutasított kapcsolatot a &quot;biztonsági hírcsatorna tétel&quot; a Hírcsatornába irányítja. Ott letilthatod vagy engedélyezheted az IP címüket. Ugyanazon csomópont összes helyszinére vonatkozik. </p></body></html> Require white list clearance - + Max upload speed (0=unlimited) - + Megengedett feltöltési sebesség (0=korlátlan) Max download speed (0=unlimited) - + Megengedett letöltési sebesség (0=korlátlan) kB/s - + kB/másodpercenként @@ -14246,23 +14183,25 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Figyelmeztetés: az Átvitel beállításainál engedélyezted a közvetlen letöltést. Warning: In your File-Transfer option, you select allow direct download to No. - + +Figyelmeztetés: az Átvitel beállításainál Nem engedélyezted a közvetlen letöltést. 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. - + Your trust in this peer is ultimate - + @@ -14282,22 +14221,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + <p>Ez a PGP kulcs (Azonosító= You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14312,22 +14251,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + RetroShare profil This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14348,12 +14287,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - Csevegés + Beszélgetés Start Chat - Csevegés kezdeményezése + Beszélgetés kezdeményezése @@ -14374,7 +14313,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - Partner ID: + Partner azonosító: @@ -14404,7 +14343,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Időeltolódás: @@ -14434,7 +14373,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + Ismerős időeltolódása @@ -14490,53 +14429,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Személyek Drag your circles or people to each other. - + Társítsd a köreidet a személyekkel. Internal - + Belső Chat with this person - + Beszélgetés ezzel a személlyel Chat with this person as... - + Beszélgetés ezzel a személlyel mint... Send message to this person - + Üzenet küldése ennek a személynek Person details - + Személy adatai Distant chat cannot work - + A távoli beszélgetés nem működik Distant chat refused with this person. - + A távoli beszélgetés nem engedélyezett ezzel a személlyel. Error code - + Hibakód @@ -14544,68 +14483,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Személyek Reputation - Népszerűség + Megitélés <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + A (+/-) szavazatok különbsége, ahhoz, hogy egy azonosítót negatívnak értékeljen: <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + A (+/-) szavazatok különbsége, ahhoz, hogy egy azonosítót pozitívnak értékeljen: Delete banned identities after (0 means indefinitely): - + Töröld a bannolt személyazonosságokat ennyi idő után (0 = meghatározatlan): Reset reputation of banned identities after (0 means never): - + Állítsd alaphelyzetbe a bannolt személyazonosságok hírnevét ennyi idő után (0 = soha): <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + nap <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14696,7 +14635,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14709,7 +14648,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14722,7 +14661,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14869,7 +14808,7 @@ requesting to edit it! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14938,37 +14877,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14991,7 +14930,7 @@ p, li { white-space: pre-wrap; } Widget for plugin %1 not found on plugins frame - + @@ -15009,12 +14948,12 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + [leállítva] @@ -15028,7 +14967,7 @@ p, li { white-space: pre-wrap; } [loading problem] - + [betöltési hiba] @@ -15073,7 +15012,7 @@ 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> - + @@ -15136,7 +15075,7 @@ a kártevőként működő beépülők használatától. Set Chat Window Color - Csevegőablak színének beállítása + Társalgóablak színének beállítása @@ -15147,33 +15086,25 @@ a kártevőként működő beépülők használatától. PopupDistantChatDialog - - Chat remotely closed. Please close this window. - A csevegőablak távoli bezárásra került. Kérlek zárd be ezt az ablakot. - - - 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. - Remote status unknown. - + Távoli állapot ismeretlen Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + @@ -15185,14 +15116,6 @@ a kártevőként működő beépülők használatától. Kill the tunnel? Alagút bezárása? - - Can't send message, because there is no tunnel. - Nem küldhetsz üzenetet, mert nem létezik alagút. - - - Can't send message, because the chat partner deleted the secure tunnel. - Az üzenetet nem lehet elküldeni, mert a partnered törölte a biztonságos alagutat. - PostedCreatePostDialog @@ -15214,7 +15137,7 @@ a kártevőként működő beépülők használatától. Please create or choose a Signing Id first - Kérlek, először hozz létre vagy válassz ki egy aláírás Id-t. + Kérlek, először hozz létre vagy válassz ki egy Aláíró azonosítót. @@ -15224,7 +15147,7 @@ a kártevőként működő beépülők használatától. You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + @@ -15262,7 +15185,7 @@ a kártevőként működő beépülők használatától. <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -15292,7 +15215,7 @@ a kártevőként működő beépülők használatától. Links - + Hivatkozások @@ -15338,7 +15261,7 @@ a kártevőként működő beépülők használatától. Subscribe to Posted - + @@ -15354,7 +15277,7 @@ a kártevőként működő beépülők használatától. Posted Description - + @@ -15364,7 +15287,7 @@ a kártevőként működő beépülők használatától. New Posted - + @@ -15425,12 +15348,12 @@ a kártevőként működő beépülők használatától. New Comment: - + Új hozzászólás Comment Value - + @@ -15518,7 +15441,7 @@ a kártevőként működő beépülők használatától. Please create or choose a Signing Id before Voting - Kérlek, hozz létre vagy válassz ki egy aláírás azonosítót a szavazás előtt + Kérlek, hozz létre vagy válassz ki egy Aláíró azonosítót a szavazás előtt @@ -15538,10 +15461,6 @@ a kártevőként működő beépülők használatától. Tabs Fülek - - Posted - Beküldve - Open each topic in a new tab @@ -15550,7 +15469,7 @@ a kártevőként működő beépülők használatától. Links - + Hivatkozások @@ -15612,13 +15531,13 @@ a kártevőként működő beépülők használatától. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15711,7 +15630,7 @@ az importálás gombot, hogy betöltsd. Full keys available in your keyring: - + @@ -15760,7 +15679,7 @@ az importálás gombot, hogy betöltsd. Peer ID: - Partner ID: + Partner azonosító: @@ -15928,51 +15847,35 @@ and open the Make Friend Wizard. és nyisd meg a barát hozzáadása varázslót. - - Add file - Fájl hozzáadása - - - Add files - Fájlok hozzáadása - - - Do you want to process the link ? - Meg szeretnéd nyitni a hivatkozást? - - - Do you want to process %1 links ? - Meg szeretnéd nyitni mind a %1 hivatkozást? - Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + A személyazonosság fel lett véve a Személyek közé The identity was added to people. You can now chat with it, send messages to it, etc. - + A személyazonosság fel lett véve a Személyek közé. Most már beszélgethetsz vele, küldhetsz neki üzenetet, stb. Identity cannot be added to People - + A személyazonosságot nem sikerült felvenni a Személyek közé The identity was not added to people. Some error occured. The link is probably corrupted. - + A személyazonosság nem lett felvéve a Személyek közé. Valami hiba történt. Talán nem megfelelő a hivatkozás. @@ -16087,17 +15990,17 @@ and open the Make Friend Wizard. Posted not found - + Posted message not found - + Posted messages not found - + @@ -16107,22 +16010,22 @@ and open the Make Friend Wizard. Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + Személyazonosító hivatkozás(név=%1, azonosító=%2) %1 (%2 files, %3) - + @@ -16142,7 +16045,7 @@ and open the Make Friend Wizard. Chat room not found - + A társalgószoba nem található @@ -16152,7 +16055,7 @@ and open the Make Friend Wizard. Invalid links - Helytelen linkek + Helytelen hivatkozások @@ -16235,36 +16138,38 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek le lesznek cs Cannot start Tor Manager! - + A Tor-kezelő nem indul! Tor cannot be started on your system: - + A Tor nem indul el a rendszereden: + + Cannot start Tor - + A Tor nem indítható Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16293,25 +16198,17 @@ Zárolófájl: Distant peer has closed the chat - A távoli partner kilépett a csevegésből + A távoli partner kilépett a beszélgetésből Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Függőben lévő alagút... - - - Secured tunnel is working. You can talk! - A biztonságos alagút működik. Most már beszélhetsz! + @@ -16332,12 +16229,12 @@ A hibajelentés: %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + @@ -16352,62 +16249,62 @@ A hibajelentés: TR up - + TR dn - + Data up - + Data dn - + Data forward - + Adat továbbítása You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + elindítva disabled - + leállítva Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + @@ -16469,19 +16366,19 @@ A hibajelentés: Id: - ID: + Azonosító: Security: no anonymous IDs -Biztonság: nincsenek névtelen ID-k +Biztonság: névtelen azonosítók nem engedélyezettek Join chat room - + Belépés a társalgószobába @@ -16507,122 +16404,122 @@ Biztonság: nincsenek névtelen ID-k Indefinitely - + 5 days - + 5 nap 2 weeks - + 2 hét 1 month - + 1 hónap 2 month - + 2 hónap 6 month - + 6 hónap 1 year - + 1 év days - + nap Processing - + Feldolgozás Choosing group - + Csoport kiválasztása Creating receipt - + Nyugta létrehozása Signing receipt - + Nyugta aláírása Serializing - + Creating payload - + Encrypting payload - + Publishing - + Közzététel Waiting for receipt - + Várakozás a nyugtára Receipt received - + Nyugta fogadva Receipt signature failed - + Nyugta fogadása meghiúsult Encryption failed - + A titkosítás meghiúsult Unknown - Ismeretlen + Ismeretlen Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16637,12 +16534,12 @@ Biztonság: nincsenek névtelen ID-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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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> @@ -16765,10 +16662,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16813,7 +16710,7 @@ p, li { white-space: pre-wrap; } RetroShare Page Display Style - + @@ -16835,9 +16732,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16852,8 +16749,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -16933,9 +16830,9 @@ p, li { white-space: pre-wrap; } * Browsable: browsable by your friends * Universal: both Kérlek döntsd el, hogy az alábbiak közül melyik vonatkozzon erre a mappára -*Hálózatszintű: ⇥névtelenül megosztva a teljes hálózattal (a barátaidat is beleértve) -*Böngészhető: ⇥böngészhető a barátaid által -*Teljeskörű: ⇥⇥mindkettő +*Hálózatszintű: névtelenül megosztva a teljes hálózattal (a barátaidat is beleértve) +*Böngészhető: böngészhető a barátaid által +*Teljeskörű: mindkettő @@ -17029,7 +16926,7 @@ p, li { white-space: pre-wrap; } Peer Id: - Partner ID: + Partner azonosító: @@ -17037,17 +16934,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Fa nézet beállítása Show column... - + Mutatandó oszlop... [no title] - + [nincs cím] @@ -17068,79 +16965,12 @@ p, li { white-space: pre-wrap; } <strong>Letöltés:</strong> 0.00 (kB/s) | <strong>Feltöltés:</strong> 0.00 (kB/s) - - RelayPage - - Enable Relay Connections - Relay csatlakozások engedélyezése - - - Use Relay Servers - Relay szerverek használata - - - Relay options - Relay beállítások - - - Number - Darabszám - - - Bandwidth per link - Sávszélesség kapcsolatonként - - - Total Bandwidth - Teljes sávszélesség - - - Friends - Barátok - - - kB/s - kB/s - - - Friends of Friends - Barátok barátai - - - General - Általános - - - Total: - Összes: - - - Relay Server Setup - Relay kiszolgáló beállítása - - - Add Server - Kiszolgáló hozzáadása - - - Server DHT Key - Kiszolgáló DHT kulcs - - - Remove Server - Távoli kiszolgáló - - - Relay - Relay - - RemoteSharedFilesDialog Download... - + Letöltés... @@ -17150,11 +16980,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Ajánlása üzenetben + @@ -17167,12 +16993,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + [az összes ismerős csomópontja] Only - + Csak @@ -17182,7 +17008,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + Ez a csomópont még nem küldött információt a könyvtárakról. @@ -17190,22 +17016,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -17218,33 +17044,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + IP hozzáadása a fehérlistához Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Csak IP Entire range - + Teljes tartomány @@ -17252,32 +17078,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Kollekciófájl mentése. + File already exists. - A fájl már létezik. + A fájl már létezik. What do you want to do? - Mit szeretnél csinálni? + Mit szeretnél tenni? Overwrite - Felülírás + Felülírás Merge - Egyesítés + Összefűzés Cancel - Mégse + Visszavonás @@ -17300,12 +17126,12 @@ p, li { white-space: pre-wrap; } Destination: - + Címzett: Right click to change download directory - + @@ -17341,7 +17167,7 @@ p, li { white-space: pre-wrap; } 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. Néhány mappa vagy fájlnév tiltott karaktereket tartalmazott. A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek '_' karakterrel lesznek lecserélve. @@ -17361,30 +17187,22 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek '_' <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>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>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>Új könyvtár létrehozása a kollekcióban.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - + - Remove Duplicate - + @@ -17399,17 +17217,13 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek '_' File Path - + Fájl elérési út File Count Fájlok száma - - This is the root directory. - Ez a gyökérkönyvtár. - Real Size: Waiting child... @@ -17428,17 +17242,17 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek '_' Download files - + Fájlok letöltése Specify... - Meghatározás... + Choose directory - Mappa kiválasztása + Válassz könyvtárat @@ -17480,12 +17294,12 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek '_' Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + @@ -17551,31 +17365,7 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek '_' 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. - - - - Save Collection File. - Kollekciófájl mentése. - - - What do you want to do? - Mit szeretnél csinálni? - - - Overwrite - Felülírás - - - Merge - Egyesítés - - - Cancel - Mégse - - - File already exists. - A fájl már létezik. + @@ -17584,128 +17374,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - Név + Név Size i.e: file size - Méret + Méret Completed - Elkészült + Kész Speed i.e: Download speed - Sebesség + Sebesség Progress / Availability i.e: % downloaded - Folyamat / Elérhetőség + Előrehaladás / elérhetőség Sources i.e: Sources - Források + Források Status - Állapot + Állapot Speed / Queue position - Sebesség / Sorszám + Remaining - Hátralévő + Hátralevő Download time i.e: Estimated Time of Arrival / Time left - Letöltési idő + Letöltési idő Hash - Hash + Last Time Seen i.e: Last Time Receiced Data - Utoljára látva + Path i.e: Where file is saved - Elérési út + Útvonal Failed - Sikertelen + Meghiúsult Okay - Oké + Rendben Waiting - Várakozás + Várakozik Downloading - Letöltés + Letöltés Complete - Elkészült + Kész Queued - Sorban áll + Sorbaállítva Paused - Szüneteltetve + Szüneteltetve Checking... - Ellenőrzés... + Ellenőrzés folyamatban... Unknown - Ismeretlen - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - A kép túl nagy az átvitelhez. -Lecsökkented a méretét %1x%2 pixelre? + Ismeretlen @@ -17713,7 +17494,7 @@ Lecsökkented a méretét %1x%2 pixelre? Invalid format - + Érvénytelen formátum @@ -17732,7 +17513,7 @@ Lecsökkented a méretét %1x%2 pixelre? filename - + fájlnév @@ -17742,7 +17523,7 @@ Lecsökkented a méretét %1x%2 pixelre? level - + szint @@ -17752,7 +17533,7 @@ Lecsökkented a méretét %1x%2 pixelre? style - + stílus @@ -17762,7 +17543,7 @@ Lecsökkented a méretét %1x%2 pixelre? stylesheet - + stíluslap @@ -17772,17 +17553,13 @@ Lecsökkented a méretét %1x%2 pixelre? language - + nyelv Sets RetroShare's language. RetroShare nyelvi beállítása. - - RetroShare Usage Information - RetroShare használati adatok - Unable to open log file '%1': %2 @@ -17792,7 +17569,7 @@ Lecsökkented a méretét %1x%2 pixelre? Invalid operating mode specified: - + @@ -17802,57 +17579,57 @@ Lecsökkented a méretét %1x%2 pixelre? Could not create data directory: %1 - + Revision - + Változat opmode - + működési mód Sets RetroShare's operating mode. - + A RetroShare működési módjának beállítása RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17861,7 +17638,7 @@ Lecsökkented a méretét %1x%2 pixelre? Registry Access Error. Maybe you need Administrator right. - + @@ -17954,7 +17731,7 @@ Lecsökkented a méretét %1x%2 pixelre? Search Id - Keresés ID + Keresés azonosító @@ -18133,17 +17910,17 @@ Lecsökkented a méretét %1x%2 pixelre? Create Collection... - + Gyűjtemény létrehozása Modify Collection... - + Gyűjtemény módosítása View Collection... - + Gyűjtemény megtekintése @@ -18177,12 +17954,12 @@ Lecsökkented a méretét %1x%2 pixelre? IP address: - + IP cím: Peer ID: - Partner ID: + Partner azonosító: @@ -18192,7 +17969,7 @@ Lecsökkented a méretét %1x%2 pixelre? Peer Name: - + Kapcsolat neve: @@ -18209,33 +17986,33 @@ Lecsökkented a méretét %1x%2 pixelre? but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -18263,12 +18040,12 @@ Lecsökkented a méretét %1x%2 pixelre? Chat - Csevegés + Beszélgetés Start Chat - Csevegés kezdeményezése + Beszélgetés kezdeményezése @@ -18289,7 +18066,7 @@ Lecsökkented a méretét %1x%2 pixelre? Peer ID: - Partner ID: + Partner azonosító: @@ -18368,27 +18145,27 @@ Lecsökkented a méretét %1x%2 pixelre? Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Partner/csomópont nincs a barátlistádon (PGP azonosító= Missing/Damaged SSL certificate for key - + @@ -18401,7 +18178,7 @@ Lecsökkented a méretét %1x%2 pixelre? Network Mode - Hálózat módja + Hálózati üzemmód @@ -18447,7 +18224,7 @@ Lecsökkented a méretét %1x%2 pixelre? NAT - + NAT @@ -18485,15 +18262,11 @@ Lecsökkented a méretét %1x%2 pixelre? Known / Previous IPs: Ismert / Előző IP címek: - - Show Discovery information in statusbar - Felfedezés adatainak mutatása az állapotsorban - 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. Amennyiben ezt nem jelölöd be, a RetroShare csak akkor tudja meghatározni az IP címedet, ha már csatlakoztál valakihez. Engedélyezve hagyva akkor segíthet, ha csak kevés barátod van, vagy tűzfal mögül csatlakozol, illetve VPN-t használsz. @@ -18514,84 +18287,84 @@ behind a firewall or a VPN. Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Onion cím Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + Rejtett - Lásd Beállítások I2P Address - + I2P cím I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18600,133 +18373,133 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + ügyfél server - + kiszolgáló unknown - ismeretlen + ismeretlen BOB is processing a request - + connectivity check - + kapcsolat ellenőrzése generating key - + kulcs létrehozása starting up - + indulás shuting down - + leállás BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + You are reachable through the hidden service. - + Elérhető vagy a rejtett szolgáltatáson keresztül. The proxy is not enabled or broken. Are all services up and running fine?? Also check your ports! - + [Hidden mode] - + [Rejtett mód] <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> - + @@ -18736,159 +18509,159 @@ Also check your ports! Download limit (KB/s) - + Letöltési korlát (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) - + Feltöltési korlát (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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Önműködő I2P/BOB Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + 127.0.0.1 I2P proxy port - + BOB accessible - + Address - + Cím .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + kulcs betöltése Start - Indítás + Indítás Restart - + Újraindítás Stop - Megállítás + Leállítás BOB status - + Incoming - Bejövő + Bejövő <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18902,101 +18675,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - Relay + Közvetítő Enable Relay Connections - Relay csatlakozások engedélyezése + Közvetítő állomások engedélyezése Use Relay Servers - Relay szerverek használata + Közvetítő kiszolgálók használata Relay options - Relay beállítások + Közvetítő beállítások Number - Darabszám + Szám Bandwidth per link - Sávszélesség kapcsolatonként + Sávszélesség hivatkozásokként Total Bandwidth - Teljes sávszélesség + Teljes sávszélesség Friends - Barátok + Ismerősök Friends of Friends - Barátok barátai + Ismerősök ismerősei General - Általános + Általános Total: - Összes: + Összesen: Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Relay kiszolgáló beállítása + Közvetítő kiszolgáló beállítása Add Server - Kiszolgáló hozzáadása + Kiszolgáló hozzáadása Server DHT Key - Kiszolgáló DHT kulcs + Kiszolgáló DHT kulcsa Remove Server - Távoli kiszolgáló + Kiszolgáló eltávolítása - <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>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> - + @@ -19006,23 +18779,23 @@ If you have issues connecting over Tor check the Tor logs too. IP Filters - + IP szűrők Activate IP filtering - + IP szűrés bekapcsolása IP blacklist - + IP feketelista IP range - + IP tartomány @@ -19036,13 +18809,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Származás Reason - + Indok @@ -19054,124 +18827,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP-k IP whitelist - + IP fehérlista Manual input - + Kézi bevitel <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>EÍrj be egy IP tartományt. Elfogadott formátumok:</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>Írj bármilyen megjegyzést</p></body></html> Add to blacklist - + Hozzáadás a feketelistához Add to whitelist - + Hozzáadás a fehérlistához Hidden Service Configuration - + Rejtett szolgáltatás beállításai <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 - + I2P kimenő kapcsolat rendben Service Address - + Kiszolgáló címe <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 - + bejövő forgalom rendben Expected Configuration: - + Várt konfiguráció: Please fill in a service address - + Kérlek adj meg egy szolgáltatás címet IP Range - + IP tartomány Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -19184,82 +18957,82 @@ If you have issues connecting over Tor check the Tor logs too. Added by you - + Hozzáadva általad <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> - + <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> - + Ban every IP reported by your friends - + Az ismerőseid által jelentett összes IP cím letiltása <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor Socks Proxy Tor outgoing Okay - + Tor kimenő forgalom Rendben Tor proxy is not enabled - + Tor proxy nincs engedélyezve @@ -19282,12 +19055,12 @@ If you have issues connecting over Tor check the Tor logs too. Auto-download recommended files - + Automatikusan töltse le az ajánlott fájlokat Require whitelist - + Fehérlista megkövetelése @@ -19310,12 +19083,12 @@ If you have issues connecting over Tor check the Tor logs too. hide offline - + kilépett elrejtése <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> - + @@ -19323,7 +19096,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + Forma @@ -19331,7 +19104,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + Tulajdonságok @@ -19349,13 +19122,13 @@ If you have issues connecting over Tor check the Tor logs too. Share - + Megosztás 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. - + @@ -19373,32 +19146,32 @@ Select the Friends with which you want to Share your Channel. Shared directory - + Megosztott mappa Visible name - + Megosztási név Access - + Hozzáférés Visibility - Láthatóság + Láthatóság Add new - + Hozzáadás Cancel - Mégse + Mégse @@ -19423,52 +19196,52 @@ Select the Friends with which you want to Share your Channel. Choose directory - Mappa kiválasztása + Válassz könyvtárat Change group visibility... - + Válassz csoport láthatóságot... Choose directory to share... - + Válassz könyvtárat a megosztáshoz... Choose visible name... - + Válassz megosztási nevet... [Unset] (Double click to change) - + [Nincs beállítva] (Dupla kattintás a módosításhoz) Double click to select which groups of friends can see the files - + Kattints duplán, hogy kiválaszthasd, hogy kik láthatják a fájlokat Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + [az összes ismerős csomópontja] @@ -19483,7 +19256,7 @@ Select the Friends with which you want to Share your Channel. Choose a directory to share - + Válassz ki egy megosztási könyvtárat @@ -19517,11 +19290,7 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - - - - Search files - Fájlok keresése + Megosztott könyvtárak beállításai @@ -19593,18 +19362,10 @@ Select the Friends with which you want to Share your Channel. Send retroshare Links RetroShare hivatkozás küldése - - Send retroshare Links to Cloud - Retroshare hivatkozás küldése a felhőbe - - - Add Links to Cloud - Hivatkozások hozzáadása a felhőhöz - Some files have been omitted - + @@ -19620,17 +19381,17 @@ Select the Friends with which you want to Share your Channel. Create Collection... - + Gyűjtemény létrehozása Modify Collection... - + Gyűjtemény módosítása View Collection... - + Gyűjtemény megtekintése @@ -19640,17 +19401,17 @@ Select the Friends with which you want to Share your Channel. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19658,48 +19419,48 @@ Select the Friends with which you want to Share your Channel. Friend - Barát + Ismerős Go Online - + Jelentkezz be Chatmessage - + Társalgóüzenet New Msg - + Új üzenet Message - Üzenet + Üzenet Message arrived - + Üzenet érkezett Download - Letöltés + Letöltés Download complete - + A letöltés kész Lobby - + @@ -19742,7 +19503,7 @@ Select the Friends with which you want to Share your Channel. Default - Alapértelmezett + @@ -19750,20 +19511,16 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + SplashScreen - - Load profile - Profil betöltése - Load configuration @@ -19782,15 +19539,11 @@ Select the Friends with which you want to Share your Channel. RetroShare RetroShare - - Login - Bejelentkezés - Password - Jelszó + Jelszó @@ -19816,9 +19569,9 @@ A jelenlegi személyazonosságok, helyszínek nem érintettek. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19833,7 +19586,7 @@ p, li { white-space: pre-wrap; } Wrong password - + Hibás jelszó @@ -19849,7 +19602,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19858,7 +19611,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19867,7 +19620,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19941,17 +19694,17 @@ This choice can be reverted in settings. Turtle Router - + Teknőc útválasztó Global Router - + Gxs Transport - + @@ -20058,7 +19811,7 @@ This choice can be reverted in settings. Connected: I2P - + @@ -20073,57 +19826,57 @@ This choice can be reverted in settings. TCP-in - + TCP-out - + inbound connection - + bejövő kapcsolat outbound connection - + kimenő kapcsolat UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + ismeretlen Connected: Tor - + @@ -20143,7 +19896,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20156,7 +19909,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20252,7 +20005,7 @@ p, li { white-space: pre-wrap; } Remove this item - + @@ -20394,12 +20147,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -20407,58 +20160,58 @@ p, li { white-space: pre-wrap; } Dialog - Párbeszéd + Setting up Tor... - + Tor status: - + Unknown - Ismeretlen + Ismeretlen Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Nincs beállítva Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20466,28 +20219,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + Tor rendben No tor configuration - + @@ -20505,98 +20258,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Megosztott könyvtárak Automatically share incoming directory (Recommended) - A kész letöltések automatikus megosztása (Ajánlott) + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Bejövő könyvtár Browse - Böngészés + Böngészés Partials Directory - + Részleges könyvtár Maximum uploads per friend (0 = no limit) - + Ismewrősök feltöltéseinek száma legfeljebb (0=korlátlan) @@ -20611,12 +20364,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Végpontok közötti titkosítás: Allow direct download: - + Közvetlen letöltés engedélyezése: @@ -20641,50 +20394,50 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Elfogadva Enforced - + Kényszerítve <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Igen + Igen No - Nem + Nem Per user - + Felhasználónként <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + @@ -20694,32 +20447,32 @@ 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>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>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> - + Set Incoming Directory - + Fogadó könyvtár beállítása Set Partials Directory - + Részleges könyvtár beállítása Files - Fájlok + Fájlok @@ -20781,21 +20534,6 @@ p, li { white-space: pre-wrap; } Completed Elkészült - - Speed - i.e: Download speed - Sebesség - - - Progress / Availability - i.e: % downloaded - Folyamat / Elérhetőség - - - Sources - i.e: Sources - Források - Status @@ -20811,16 +20549,6 @@ p, li { white-space: pre-wrap; } Remaining Hátralévő - - Download time - i.e: Estimated Time of Arrival / Time left - Letöltési idő - - - Peer - i.e: user name - Partner - Progress @@ -20875,7 +20603,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Partner + Kapcsolat @@ -20997,7 +20725,7 @@ 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> - + @@ -21024,77 +20752,16 @@ p, li { white-space: pre-wrap; } Choose directory Mappa kiválasztása - - Failed - Sikertelen - - - Okay - Oké - - - Waiting - Várakozás - - - Downloading - Letöltés - - - Complete - Elkészült - - - Queued - Sorban áll - - - Paused - Szüneteltetve - - - Checking... - Ellenőrzés... - - - Unknown - Ismeretlen - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Amennyiben a letöltött adatok hash értéke nem egyezik a forrás - által megadott hash értékkel, a fájl valószínűleg hibás. A RetroShare -igényel egy részletesebb hash térképet a forrástól, hogy meghatározza -és elkülönítse a hibás adatokat, majd megkísérelje újból letölteni a fájlt. -Kérlek, légy türelmes! - - - Transferring - Folyamatban - - - Uploading - Feltöltés - Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Alagút @@ -21154,15 +20821,6 @@ Kérlek, légy türelmes! Please enter a new--and valid--filename Kérlek, írj be egy új --és megfelelő-- fájlnevet - - Last Time Seen - i.e: Last Time Receiced Data - Utoljára látva - - - UserID - FelhasználóID - @@ -21270,11 +20928,6 @@ Kérlek, légy türelmes! File Transfers Fájl átvitelek - - Path - i.e: Where file is saved - Elérési út - Path @@ -21288,27 +20941,27 @@ Kérlek, légy türelmes! Could not delete preview file - + Try it again? - + Újból megpróbálod? Create Collection... - + Gyűjtemény létrehozása Modify Collection... - + Gyűjtemény módosítása View Collection... - + Gyűjtemény megtekintése @@ -21318,17 +20971,17 @@ Kérlek, légy türelmes! %1 tunnels - + %1 alagút Anonymous tunnel 0x - + Files - Fájlok + Fájlok @@ -21360,7 +21013,7 @@ Kérlek, légy türelmes! Empty - + Üres @@ -21371,7 +21024,7 @@ Kérlek, légy türelmes! Friends Directories [updating...] - + @@ -21381,7 +21034,7 @@ Kérlek, légy türelmes! My Directories [updating...] - + @@ -21391,7 +21044,7 @@ Kérlek, légy türelmes! # Files - + # Fájlok @@ -21411,22 +21064,22 @@ Kérlek, légy türelmes! Access - + Hozzáférés Visibility - Láthatóság + Láthatóság Column %1 - + Oszlop-szám %1 Row %1 - + Sor-szám %1 @@ -21460,7 +21113,7 @@ Kérlek, légy türelmes! Tunnel id - Alagút ID + Alagút azonosító @@ -21475,12 +21128,12 @@ Kérlek, légy türelmes! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - Kérelem ID: %1 » tőle [%2]» %3 másodperccel ezelőtt + Kérelem azonosító: %1 tőle [%2] %3 másodperccel ezelőtt @@ -21521,12 +21174,12 @@ Kérlek, légy türelmes! Anonymous tunnels - + Névtelen alagutak Authenticated tunnels - + @@ -21536,7 +21189,7 @@ Kérlek, légy türelmes! Turtle Router - + Teknőc útválasztó @@ -21584,7 +21237,7 @@ Kérlek, légy türelmes! Forwarded data - + Továbbított adatok @@ -21713,57 +21366,57 @@ Kérlek, légy türelmes! Enable Retroshare WEB Interface - + Web parameters - + Port: - Port: + Allow access from all IP addresses (Default: localhost only) - + Engedélyezd a hozzáférést az összes IP cím részére (Alapértelmezett: csak localhost) Apply setting and start browser - + Beállítások alkalmazása és a böngésző indítása Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + A beépített böngésző nincs engedélyezve The webinterface is not enabled. Enable it in Settings -> Webinterface. - + A beépített böngészőt a menü "Beállítások" -> "Böngésző" pontjai alatt engedélyezheted. failed to start Webinterface - + a böngészőt nem sikerült elindítani Webinterface - + Böngésző @@ -21911,12 +21564,12 @@ Kérlek, légy türelmes! Page Id - Oldal id + Oldal azonosító Orig Id - + Eredeti azonosító @@ -21991,7 +21644,7 @@ Kérlek, légy türelmes! Show Wiki Group - + Mutasd a Wiki csoportot @@ -22034,7 +21687,7 @@ Kérlek, légy türelmes! PageId - Oldal Id + Oldal azonosító @@ -22162,7 +21815,7 @@ Kérlek, légy türelmes! Update Group - + Csoport frissítése @@ -22384,7 +22037,7 @@ Kérlek, légy türelmes! Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + Képek (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) @@ -22392,134 +22045,133 @@ Kérlek, légy türelmes! Do you accept connections signed by this profile? - + Name of the profile - + Profilnév This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + A profil PGP kulcs azonosítója Last time this key was used (received time, or to check connection) - + Connections - + Kapcsolatok Profile - + Profil Trust level - + Bizalmi szint Has signed your key? - + Aláírta a kulcsodat? Id - + Azonosító Last used - Utoljára használt + Utoljára használva Personal signature - Személyes aláírás + Személyes aláírás Marginally trusted peer - Részlegesen megbízható partner + Alig megbízható kapcsolat Fully trusted peer - Teljesen megbízható partner + Teljesen megbízható kapcsolat Untrusted peer - Nem bizalmas partner + Nem megbízható kapcsolat Yes - Igen + Igen No - Nem + Nem Last hour - Utolsó óra + Elmúlt órában Today - Ma + Ma Never - Soha + Soha %1 days ago - %1 nappal ezelőtt + %1 napja Accepted - + Elfogadva - - + - PGP key signed by you - PGP kulcs általad aláírva + az általad aláírt PGP kulcs has authenticated you. Right-click and select 'make friend' to be able to connect. - hitelesített téged. -Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése' menüt, hogy elfogadd a kérést. + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_it.qm b/retroshare-gui/src/lang/retroshare_it.qm index 7ed893631..ba2c51d3f 100644 Binary files a/retroshare-gui/src/lang/retroshare_it.qm and b/retroshare-gui/src/lang/retroshare_it.qm differ diff --git a/retroshare-gui/src/lang/retroshare_it.ts b/retroshare-gui/src/lang/retroshare_it.ts index 5efda6d1c..5e169c33d 100644 --- a/retroshare-gui/src/lang/retroshare_it.ts +++ b/retroshare-gui/src/lang/retroshare_it.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + Versione Retroshare @@ -28,7 +26,7 @@ About - + Informazioni @@ -36,52 +34,52 @@ Form - + Modulo About - + Informazioni Copy Info - + Copia info close - + chiudi Max score: %1 - + Punteggio massimo: %1 Score: %1 - + Punteggio: %1 Level: %1 - + Livello: %1 About RetroShare - A proposito di RetroShare + Informazioni su RetroShare Have fun ;-) - + Divertiti ;-) Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Spiacente, impossibile determinare il comando di default per questo file @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -540,7 +538,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + (È richiesto il riavvio) @@ -625,47 +623,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Show Sound Status - + Mostra suoni di stato Show Network Rate Status - + Mostra lo stato di utilizzo della rete Show Discovery Status - + Mostra lo stato di esplorazione Show DHT Status - + Mostra stato DHT Show Hashing Status - + Mostra stato hashing Show NAT Status - + Mostra stato NAT Show Peer Status - + Mostra stato nodi Show Status ComboBox - + @@ -680,7 +678,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + Mostra lo stato di modalità operativa @@ -690,22 +688,22 @@ p, li { white-space: pre-wrap; } Disable SysTray ToolTip - + Disabilita i suggerimenti sull'icona della barra delle applicazioni Main page items: - + Elementi della pagina principale: Buttons - + Bottoni Item list - + Lista degli elementi @@ -935,12 +933,12 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Average - Media + Media Total - + @@ -1026,7 +1024,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Form - + Modulo @@ -1061,22 +1059,22 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Legend: - + Legenda: Current - + Attuale Total - + Log scale - + Scala logaritmica @@ -1109,14 +1107,10 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro ChatLobbyDialog - - Participants - Partecipanti - Name - Nome + Nome @@ -1131,7 +1125,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Ban this person (Sets negative opinion) - + Banna persona (esprimi ufficialmente parere negativo) @@ -1141,12 +1135,12 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Sort by Name - Ordina per nome + Ordina per Nome Sort by Activity - + Ordina per Attività @@ -1168,10 +1162,6 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Topic: %1 Argomento: %1 - - Lobby management - Gestione gruppo di chat - %1 changed his name to: %2 @@ -1200,38 +1190,38 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Give neutral opinion - + Esprimi parere neutro Give positive opinion - + Esprimi parere positivo Show author in people tab - + Mostra l'autore nella scheda delle persone Search - + Cerca Leave this chat room (Unsubscribe) - + Lascia la stanza di conversazione (Disiscriviti) Welcome to chat room %1 - + Benvenuto nella stanza di conversazione %1 Room chat - + Sala di conversazione @@ -1271,29 +1261,29 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro %1 has left the room. - + %1 ha lasciato la stanza. Chat room management - + %1 joined the room. - + %1 è entrato nella stanza. Unsubscribe from chat room - + Disiscriviti dalla stanza di conversazione Do you want to unsubscribe to this chat room? - + Vuoi disiscriverti da questa stanza di conversazione? @@ -1309,7 +1299,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Chats - + Chat @@ -1364,106 +1354,108 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Private Subscribed chat rooms - + Stanze di conversazione private sottoscritte Public Subscribed chat rooms - + Stanze di conversazione pubbliche sottoscritte Private chat rooms - + Stanze di conversazione private Public chat rooms - + Stanze di conversazione pubbliche <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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;Stanze di conversazione</h1> <p>Le stanze di conversazione funzionano similmente a IRC. Esse ti permettono di parlare anonimamente con moltissime persone senza la necessità di avere amici.</p> <p>Una stanza 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 che sei stato invitato ad una stanza di conversazione privata, sarai in grado di vederla quando i tuoi amici la staranno usando.</p> <p>La lista a sinistra mostra il gruppo di conversazione alla quale i tuoi amici stanno partecipando. Puoi sia <ul> <li>Fare clic sul pulsante destro per creare una nuova stanza di conversazione</li> <li>Fare doppio clic su una stanza di conversazione per entrare, chiacchierare e mostrare la stanza stessa ai tuoi amici</li> </ul> Nota: Per far funzionare adeguatamente le stanze di conversazione, il tuo computer deve avere l'ora impostata correttamente. Quindi controlla l'ora del tuo sistema!</p> Create chat room - + Crea chat room Leave this room - + Lascia questa stanza Create a non anonymous identity and enter this room - + Crea un'identità non anonima ed entra in questa stanza Create an identity and enter this chat room - + Crea un'identità ed entra in questa stanza di conversazione Enter this chat room - + Entra in questa stanza di conversazione Enter this chat room as... - + Entra in questa stanza di conversazione come... Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + Non puoi unirti a questa stanza di conversazione con la tua identità predefinita, poiché è anonima ed in questa stanza le identità anonime sono proibite. You're not subscribed to this chat room; Double click-it to enter and chat. - + Non sei iscritto a questa stanza di conversazione; Fai doppio clic per entrare e conversare. You will need to create a non anonymous identity in order to join this chat room. - + Devi creare un'identità non anonima per unirti a questa stanza di conversazione. You will need to create an identity in order to join chat rooms. - + Devi creare un'identità per unirti a questa stanza di conversazione. No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + Nessuna stanza di conversazione selezionata. +Seleziona delle stanze di conversazione sulla sinistra per vederne i dettagli. +Fai doppio clic su una stanza di conversazione per entrare e conversare. %1 invites you to chat room named %2 - + %1 ti invita alla stanza di conversazione chiamata %2 Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Scegli un'identità per questa stanza di conversazione: @@ -1494,7 +1486,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + ID anonime accettati @@ -1539,17 +1531,17 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Chat room Name: - + Nome chat room: Chat room Id: - + ID chat room: @@ -1608,7 +1600,7 @@ Double click a chat room to enter and chat. Chats - + Chat @@ -1666,27 +1658,27 @@ Double click a chat room to enter and chat. Distant Chat - + Conversazione a distanza Everyone - + Tutti Contacts - Contatti + Contatti Nobody - + Nessuno Accept encrypted distant chat from - + Accetta una conversazione criptata a distanza da @@ -1741,12 +1733,12 @@ Double click a chat room to enter and chat. Send as plain text by default - + Invia per default come testo semplice Load embedded images - Carica immagini incorporate + Carica immagini incorporate @@ -1761,7 +1753,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + Non inviare le notifiche di digitazione @@ -1819,14 +1811,14 @@ Double click a chat room to enter and chat. Style: - + Stile: Variant: - + Variante @@ -1843,7 +1835,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1893,16 +1885,12 @@ Double click a chat room to enter and chat. UserName - + NomeUtente /me is sending a message with /me - - - - Chat - Chat + /me sta inviando un messaggio con /me @@ -1972,7 +1960,7 @@ Double click a chat room to enter and chat. Maximum count for coloring matching text - + Limite massimo di testo con stesso colore @@ -2012,7 +2000,7 @@ Double click a chat room to enter and chat. Chats - + @@ -2094,7 +2082,7 @@ Double click a chat room to enter and chat. Insert emoticon - + Inserisci emoticon @@ -2104,7 +2092,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2160,48 +2148,48 @@ Double click a chat room to enter and chat. Quote - Cita + Cita Quotes the selected text - + Cita testo selezionato Drop Placemark - + Toglie il segnaposto Insert horizontal rule - + Inserisci riga orizzontale Save image - + Salva immagine Send as PlainText - + Invia come testo semplice Send as plain text without font. - + Invia come testo semplice. Don't replace tag with Emote Icon. - + Non rimpiazzare i simboli con icone emozionali. Show Hidden Images - + Mostra immagini nascoste @@ -2212,18 +2200,20 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Rimangono %1 caratteri +dopo la conversione in HTML. Warning: This message is too big of %1 characters after HTML conversion. - + Attenzione: Questo messaggio supera il limite massimo di %1 caratteri +dopo la conversione in HTML. Choose your font. - + @@ -2258,11 +2248,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - I messaggi inviati saranno consegnati quando il tuo amico tornerà Online + @@ -2350,18 +2336,18 @@ after HTML conversion. Person id: - + Double click on it to add his name on text writer. - + Unsigned - + Non firmato @@ -2546,10 +2532,6 @@ Double click on it to add his name on text writer. Details Dettagli - - Peer Address - Indirizzo Contatto - @@ -2564,12 +2546,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2582,10 +2564,6 @@ Double click on it to add his name on text writer. Port Porta - - Addresses list - Lista indirizzi - Include signatures @@ -2615,10 +2593,6 @@ Double click on it to add his name on text writer. Not connected Non connesso - - Peer Addresses - Indirizzi Contatti - Retroshare node details @@ -2652,17 +2626,17 @@ Double click on it to add his name on text writer. Name: - Nome: + Nome: Status message: - + Messaggio di stato: List of known addresses: - + @@ -2713,7 +2687,7 @@ Double click on it to add his name on text writer. <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>Questo è un metodo di criptazione usato da <span style=" font-weight:600;">OpenSSL</span>. La connessione ai nodi amici</p><p>è sempre pesantemente criptata e in caso sia presente il DHE la connessione utilizzerà anche </p><p>&quot;la perfetta segretezza in avanti&quot;.</p></body></html> @@ -2752,7 +2726,7 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2778,17 +2752,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Per favore, incolla il certificato Retroshare del tuo amico nel riquadro sottostante @@ -2908,7 +2882,7 @@ Double click on it to add his name on text writer. Email - Posta + Email @@ -3010,12 +2984,6 @@ resources. &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 @@ -3024,22 +2992,22 @@ resources. RetroShare certificate - + Certificato Retroshare Please paste below your friend's Retroshare certificate - + Per favore, incolla il certificato Retroshare del tuo amico Paste certificate - + Incollare il certificato <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + <html><head/><body><p>Questo riquadro richiede il certificato Retroshare del tuo amico. ATTENZIONE: Si tratta di una cosa diversa dalla chiave di profilo del tuo amico. Non incollare la chiave di profilo del tuo amico qui (nemmeno una sua parte). Non funzionerebbe.</p></body></html> @@ -3098,7 +3066,7 @@ resources. <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;">Firmare la chiave di un amico è un modo di esprimergli la tua fiducia davanti agli altri amici. Le firme qui sotto attestano crittologicamente che i possessori delle chiavi elencate riconoscono l'attuale chiave PGP come autentica.</span></p></body></html> @@ -3189,12 +3157,12 @@ resources. Certificate appears to be valid - + Il certificato sembra valido Not a valid Retroshare certificate! - + Non è un certificato Retroshare valido! @@ -3207,31 +3175,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + @@ -3372,27 +3340,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + Mostra Opzioni avanzate <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;">Firmare la chiave di un amico è un modo di esprimergli la tua fiducia davanti agli altri amici. Li aiuta a decidere quando accettare connessioni basate su quella chiave, fidandosi di te. Firmare una chiave è assolutamente facoltativo e la firma non si può revocare, quindi scegli saggiamente quando farlo.</span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">Retroshare cerca periodicamente, nelle liste dei tuoi amici, files corrispondenti ai tuoi trasferimenti, così da poter stabilire dei trasferimenti diretti. In questo caso, il tuo amico saprà che tu stai scaricando uno dei suoi files.</p><p align="justify">Per prevenire questo comportamento solo per questo amico, deseleziona questa opzione. Puoi comunque effettuare un trasferimento diretto se lo richiedi esplicitamente, ad es. scaricando qualcosa dalla lista di files del tuo amico. Questa impostazione è applicata a tutte le locazioni dello stesso nodo.</p></body></html> <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. Applied to all locations of the same node.</p></body></html> - + <html><head/><body><p>Questa opzione ti permette di scaricare automaticamente un file raccomandato in un qualche messaggio arrivato da questo nodo. Può essere utile, ad esempio, per inviare files tra i tuoi nodi. L'opzione viene applicata a tutte le locazioni dello stesso nodo.</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. Applies to all locations of the same node.</p></body></html> - + <html><head/><body><p>Gli utenti con questa opzione abilitata non possono connettersi se il loro indirizzo di connessione non è nella lista degli indirizzi permessi. Questo ti protegge da attacchi basati sul traffico. Quando l'opzione viene utilizzata, gli utenti rifiutati vengono riportati su &quot;elementi sulla sicurezza dei dati in arrivo&quot; nella sezione relativa alle novità sui dati in arrivo. Da li, potrai permettere/bloccare i loro indizzi IP. Si applica a tutte le locazioni dello stesso nodo.</p></body></html> @@ -3407,7 +3375,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + Il testo sottostante è il tuo certificato Retroshare. Dovrai darlo al tuo amico. @@ -3495,7 +3463,7 @@ anche se non hai amici. <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>Questo certificato non ha indirizzo IP. Dovrai utilizzare la ricerca e la DHT per trovare il tuo amico. Dato che richiedi l'uso di una lista di IP autorizzati, l'utente sarà segnalato nella lista degli elementi di sicurezza in ingresso. Da li potrai autorizzare il suo indirizzo IP.</p> @@ -3592,13 +3560,13 @@ anche se non hai 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3920,7 +3888,7 @@ p, li { white-space: pre-wrap; } Peer DHT is Disabled - + @@ -3962,26 +3930,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Si prega di riprovare importando l'intero Certificato - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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//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> - @@ -4044,12 +3992,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4075,17 +4023,17 @@ p, li { white-space: pre-wrap; } Invited Members - + Membri invitati <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + <html><head/><body><p>Ai membri di questa lista verrà automaticamente proposto di entrare nella cerchia (accettando di iscriversi). Non riceveranno</p><p>dati riservati a questa cerchia finché non lo faranno.</p></body></html> Known People - + Persone conosciute @@ -4100,47 +4048,47 @@ p, li { white-space: pre-wrap; } Name: - Nome: + Nome: Contact author: - + Contattare l'autore: [Circle Admin] - + [Amministratore di Cerchia] Distribution: - + Distribuzione: <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Privato + Privato <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + Visibile soltanto ai membri di: @@ -4215,28 +4163,28 @@ p, li { white-space: pre-wrap; } Circle name - + Nome della cerchia Update - + Aggiorna Close - Chiudi + Chiudi Create New Circle - + Crea una nuova cerchia Create - Crea + Crea @@ -4246,12 +4194,12 @@ p, li { white-space: pre-wrap; } Add Member - + Aggiungere membro Remove Member - + Rimuovere membro @@ -4265,12 +4213,12 @@ p, li { white-space: pre-wrap; } Group Name: - Nome gruppo: + Nome gruppo: Group ID: - + ID gruppo: @@ -4280,7 +4228,7 @@ p, li { white-space: pre-wrap; } To be defined - + Da definire @@ -4317,9 +4265,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4441,7 +4389,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + @@ -4500,7 +4448,7 @@ p, li { white-space: pre-wrap; } Edit Message - + @@ -4532,13 +4480,13 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4548,12 +4496,12 @@ Do you want to discard this message? No compatible ID for this forum - + ID non compatibile con questo forum None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + A nessuna delle tue identità è permesso scrivere in questo forum. Questo può derivare dalla limitazione del forum ad una cerchia nella quale non è presente nessuna delle tue identità, oppure perché il forum richiede identità firmate con PGP. @@ -4571,16 +4519,6 @@ Do you want to discard this message? Send Invia - - Forum Message - Messaggio Forum - - - 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 @@ -4632,7 +4570,7 @@ Vuoi scartare questo messaggio? <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> - + Se la imposti, solo le identità firmate con PGP potranno essere usate per unirsi e parlare in questo gruppo. Questa limitazione previene lo spamming anonimo dato che diventa possibile, almeno per qualcuno del gruppo, localizzare il nodo dello spammer. @@ -4657,17 +4595,17 @@ Vuoi scartare questo messaggio? Create Chat Room - + Crea una stanza di conversazione Put a sensible chat room name here - + Inserisci qui un nome ragionevole per la stanza di conversazione Set a descriptive topic here - + Inserire qui una descrizione @@ -4836,7 +4774,7 @@ Vuoi scartare questo messaggio? <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 usa il DHT di Bittorrent come proxy per le connessioni. Non "salva" il tuo indirizzo IP nel DHT. Al contrario il DHT è utilizzato dai tuoi amici per raggiungerti, tramite delle normali richieste al DHT. La pallina di stato diventerà verde non appena Retroshare otterrà una risposta DHT da uno dei tuoi amici.</p> @@ -4862,7 +4800,7 @@ Vuoi scartare questo messaggio? No peer found in DHT - + Nessun nodo trovato nella DHT @@ -4890,17 +4828,17 @@ Vuoi scartare questo messaggio? Faster - Accelera + Average - Media + Media Slower - Rallenta + @@ -5132,7 +5070,7 @@ Vuoi scartare questo messaggio? Copy %1 to clipboard - + Copia %1 negli appunti @@ -5172,17 +5110,17 @@ Vuoi scartare questo messaggio? DETERMINISTIC SYM NAT - + SYM NAT DETERMINISTICO RESTRICTED CONE NAT - + CONE NAT SOGGETTO A RESTRIZIONI FULL CONE NAT - + CONE NAT PIENO @@ -5197,12 +5135,12 @@ Vuoi scartare questo messaggio? UNKNOWN NAT HOLE STATUS - + STATO DEL NAT HOLE SCONOSCIUTO NO NAT HOLE - + NESSUN NAT HOLE @@ -5222,22 +5160,22 @@ Vuoi scartare questo messaggio? NET BAD: Unknown State - + PROBLEMA DI RETE: Stato sconosciuto NET BAD: Offline - + PROBLEMA DI RETE: Disconnesso NET BAD: Behind Symmetric NAT - + PROBLEMA DI RETE: Dietro ad una NAT simmetrica NET BAD: Behind NAT & No DHT - + PROBLEMA DI RETE: Dietro ad una NAT e niente DHT @@ -5302,7 +5240,7 @@ Vuoi scartare questo messaggio? Direct - + Diretto @@ -5342,7 +5280,7 @@ Vuoi scartare questo messaggio? RELAY END - + FINE DEL RELAY @@ -5364,12 +5302,12 @@ Vuoi scartare questo messaggio? Own Relay - + Relay proprio RELAY PROXY - + @@ -5388,7 +5326,7 @@ Vuoi scartare questo messaggio? Relays - + Relé @@ -5441,7 +5379,7 @@ Vuoi scartare questo messaggio? Unreach: - + Irraggiungibile: @@ -5456,7 +5394,7 @@ Vuoi scartare questo messaggio? DHT Peers: - + Nodi DHT: @@ -5507,12 +5445,12 @@ Vuoi scartare questo messaggio? Proxy VIA - + Relay VIA - + @@ -5831,7 +5769,7 @@ Vuoi scartare questo messaggio? # Files - + # file @@ -5861,12 +5799,12 @@ Vuoi scartare questo messaggio? Column %1 - + Colonna %1 Row %1 - + Riga %1 @@ -5886,10 +5824,6 @@ Vuoi scartare questo messaggio? Expand new messages Espandi i nuovi messaggi - - Forum - Forum - Load embedded images @@ -5898,12 +5832,12 @@ Vuoi scartare questo messaggio? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Caricare emoticon (dispendioso per traffico) @@ -5918,7 +5852,7 @@ Vuoi scartare questo messaggio? Forums - Forums + @@ -5932,7 +5866,7 @@ Vuoi scartare questo messaggio? ID - ID + ID @@ -5947,7 +5881,7 @@ Vuoi scartare questo messaggio? export your friendlist including groups - + @@ -5968,7 +5902,7 @@ Vuoi scartare questo messaggio? Trusted nodes - + Nodi fidati @@ -6021,7 +5955,7 @@ Vuoi scartare questo messaggio? Search ID - + @@ -6031,12 +5965,12 @@ Vuoi scartare questo messaggio? Profile details - + Dettagli profilo Deny connections - Rifiuta connessioni + Rifiuta connessioni @@ -6061,17 +5995,17 @@ Vuoi scartare questo messaggio? Send message to this node - + Inviare messaggio a questo nodo Node details - + Dettagli nodo Recommend this node to... - + Raccomanda questo nodo a... @@ -6143,7 +6077,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Select file for importing your friendlist from - + @@ -6162,10 +6096,6 @@ uno o più peer non sono stati aggiunti ad un gruppo Error Errore - - Failed to get a file! - Non è stato possibile recuperare un file! - File is not writeable! @@ -6183,7 +6113,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Show Items - + @@ -6236,42 +6166,42 @@ uno o più peer non sono stati aggiunti ad un gruppo Dialog - Dialogo + Message: - Messaggio: + Messaggio: Recommend friends - Raccomanda amici + Raccomanda amici To - A + A Please select at least one friend for recommendation. - Si prega di selezionare almeno un amico da raccomandare. + Please select at least one friend as recipient. - Si prega di selezionare almeno un amico come destinatario. + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6307,7 +6237,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Filter only connected - + @@ -6327,7 +6257,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Mark none - + @@ -6434,7 +6364,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Retroshare broadcast chat: messages are sent to all connected friends. - + @@ -6470,14 +6400,6 @@ uno o più peer non sono stati aggiunti ad un gruppo All fields are required with a minimum of 3 characters Ogni campio deve avere minimo 3 caratteri - - Password (check) - Password (check) - - - [Required] Type the same password again here. - [Richiesto] Digita nuovamente la password. - Passwords do not match @@ -6491,7 +6413,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Use BOB - + @@ -6499,19 +6421,11 @@ uno o più peer non sono stati aggiunti ad un gruppo This password is for PGP Questa Password è per PGP - - Generate new node - Genera nuovo nodo - You can use it now to create a new node. Puoi utilizzarlo ora per creare un nuovo nodo. - - Invalid hidden node - Nodo nascosto non valido - Node field is required with a minimum of 3 characters @@ -6522,99 +6436,81 @@ uno o più peer non sono stati aggiunti ad un gruppo 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. - - - No node exists for this profile. - Nessun nodo esistente per questo profilo - Options - Opzioni + Opzioni PGP Key Length - + Lunghezza chiave PGP <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + Nodo standard TOR/I2P Hidden node - + Nodo TOR/I2P nascosto <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + Nome nodo <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + Esporta questo profilo <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + @@ -6637,25 +6533,11 @@ Altrimenti, per usare un profilo già esistente, despunta la voce "Crea nuo <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> - - PGP key length - Lunghezza chiave PGP - Click to create your node and/or profile Clicca per creare il tuo nodo e/o profilo - - Generate new profile and node - Genera un nuovo profilo e nodo - - - 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" - Export profile @@ -6703,62 +6585,62 @@ il bottone IMPORT per caricarlo Create new profile and new Retroshare node - + Create new Retroshare node - + Crea nuovo nodo Retroshare Tor/I2P address - + Indirizzo Tor/I2P Username - + Nome utente Chat name - + Nome in chat Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + File profilo RetroShare (*.asc);; Tutti i file (*) @@ -6783,16 +6665,12 @@ il bottone IMPORT per caricarlo The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - - - - 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 + @@ -6863,7 +6741,7 @@ il bottone IMPORT per caricarlo Register retroshare:// as URL protocol - + @@ -6873,22 +6751,22 @@ il bottone IMPORT per caricarlo When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6908,22 +6786,22 @@ il bottone IMPORT per caricarlo You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6971,7 +6849,7 @@ il bottone IMPORT per caricarlo <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7004,7 +6882,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:'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> @@ -7016,31 +6894,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> @@ -7053,7 +6931,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> - + @@ -7065,11 +6943,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7177,7 +7055,7 @@ p, li { white-space: pre-wrap; } GroupBox - + @@ -7187,7 +7065,7 @@ p, li { white-space: pre-wrap; } Identity Name - + Nome dell'identità @@ -7207,32 +7085,32 @@ p, li { white-space: pre-wrap; } Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - Dettagli + Dettagli @@ -7260,12 +7138,12 @@ p, li { white-space: pre-wrap; } Routing matrix ( - + [Unknown identity] - + [Identità sconosciuta] @@ -7286,7 +7164,7 @@ p, li { white-space: pre-wrap; } [Unknown] - [Scononsciuto] + [Sconosciuto] @@ -7322,72 +7200,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Non visibile ai nodi amici Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7400,7 +7278,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7418,12 +7296,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + @@ -7448,7 +7326,7 @@ p, li { white-space: pre-wrap; } 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. - + @@ -7476,12 +7354,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Ordinamento decrescente Sort Ascending Order - + Ordinamento crescente @@ -7501,33 +7379,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Ultimo post + Ultimo post Never - Mai + Mai @@ -7664,7 +7542,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7876,12 +7754,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Nuovo commento: Comment Value - + @@ -7908,7 +7786,7 @@ p, li { white-space: pre-wrap; } Edit - Modifica + @@ -7991,7 +7869,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -8020,7 +7898,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -8070,32 +7948,32 @@ p, li { white-space: pre-wrap; } Never - Mai + Mai Public - Pubblico + Pubblico Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -8120,23 +7998,23 @@ p, li { white-space: pre-wrap; } Administrator: - + Amministratore: Last Post: - + Ultimo post: unknown - sconosciuto + sconosciuto Distribution: - + Distribuzione: @@ -8177,48 +8055,48 @@ p, li { white-space: pre-wrap; } Details - Dettagli + Dettagli Remove Item - + Rimuovi elemento for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8312,7 +8190,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8337,7 +8215,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:'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//IT" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8515,7 +8393,7 @@ prima che tu possa commentare New Thread - Nuovo Thread + @@ -8549,7 +8427,7 @@ prima che tu possa commentare Save image - + Salva immagine @@ -8610,7 +8488,7 @@ prima che tu possa commentare <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> - + @@ -8680,44 +8558,44 @@ prima che tu possa commentare [unknown] - + [sconosciuto] Public - Pubblico + Pubblico Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Distribuzione Anti-spam - + Anti-spam @@ -8762,7 +8640,7 @@ prima che tu possa commentare <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> - + @@ -8805,127 +8683,127 @@ prima che tu possa commentare New thread - + Read status - + Edit - Modifica + Reply to author with private message - + Give positive opinion - + Esprimi parere positivo This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Esprimi parere neutro Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Esprimi parere negativo Show author in people tab - + Mostra l'autore nella scheda delle persone Author's reputation - + Reputazione autore Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Ultimo post Never - Mai + Mai Synchronization - + Sincronizzazione Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8986,7 +8864,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -9090,10 +8968,6 @@ prevents the message to be forwarded to your friends. Public Pubblico - - Only For Your Friends - Solo per i tuoi amici - Publish Signatures @@ -9157,29 +9031,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Commenti: + Commenti: TextLabel - + Distribution: - + Distribuzione: Anti Spam: - + Anti-spam: @@ -9190,45 +9064,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Permesso Disallowed - + Negato Message tracking - + PGP signature required - + Richiesta firma PGP Never - Mai + Mai Only friends nodes in group - + @@ -9238,7 +9112,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + @@ -9289,52 +9163,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9407,59 +9281,59 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + 5 days - + 5 giorni 2 weeks - + 2 settimane 1 month - + 1 mese 3 months - + 3 mesi 6 months - + 6 mesi 1 year - + 1 anno Indefinitly - + Indefinitamente Store posts for at most... - + Share publish permissions - + @@ -9574,107 +9448,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - ID + ID Destination - Destinazione + Data status - Stato dati + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Sottoscritto + Popularity - Popolarità + Details - Dettagli + Dettagli Unknown Peer - Contatto sconosciuto + Pending data items - + Unknown - Scononsciuto + Yes - + No - No + No @@ -9682,42 +9556,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + ID tunnel: %1 from: %1 - + da: %1 to: %1 - + a: %1 status: %1 - + stato: %1 total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - Contatto sconosciuto + Nodo sconosciuto @@ -9919,21 +9793,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9955,18 +9829,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -10030,114 +9904,114 @@ p, li { white-space: pre-wrap; } Form - + Modulo Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - Copia nel PortaBlocco il Certificato + Save your Cert into a File - Salva il tuo certificato in un File + Send via Email - + Invia via email Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - Invito RetroShare + Invito RetroShare Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - Salva come... + Salva come... RetroShare Certificate (*.rsc );;All Files (*) - Certificato RetroShare (*.rsc);; Tutti i Files (*) + Certificato RetroShare (*.rsc);; Tutti i Files (*) Home - Origine [Home] + Home @@ -10156,17 +10030,17 @@ private and secure decentralized communication platform. Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + @@ -10201,12 +10075,12 @@ p, li { white-space: pre-wrap; } Ban-option: - + Auto-Ban all identities signed by the same node - + @@ -10217,23 +10091,23 @@ p, li { white-space: pre-wrap; } Send Invite - + Manda invito Positive votes - + Voti positivi 0 - 0 + 0 Negative votes - + Voti negativi @@ -10275,7 +10149,7 @@ p, li { white-space: pre-wrap; } [unverified] - + [nonVerificato] @@ -10335,52 +10209,52 @@ p, li { white-space: pre-wrap; } positive - + positivo negative - + negativo No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + Ciao,<br>vorrei essere tuo amico sul network RetroShare.<br> You have a friend invite - + Hai una richiesta di amicizia Respond now: - + Rispondi subito: Thanks, <br> - Grazie, <br> + Grazie, <br> @@ -10414,90 +10288,90 @@ p, li { white-space: pre-wrap; } Create new circle - + Persons - + Votes - + Person - + Close - Chiudi + Chiudi Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + Voti positivi 0 - 0 + 0 Negative votes - + Voti negativi Usage statistics - + Circles - Circoli + Circle name - + Nome della cerchia Membership - Appartenenza + Appartenenza Public Circles - Circoli pubblici + Personal Circles - Circoli personali + @@ -10533,7 +10407,7 @@ p, li { white-space: pre-wrap; } () - + () @@ -10563,7 +10437,7 @@ p, li { white-space: pre-wrap; } Create new... - + @@ -10573,7 +10447,7 @@ p, li { white-space: pre-wrap; } Send Invite - + Manda invito @@ -10590,13 +10464,13 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + @@ -10633,12 +10507,12 @@ p, li { white-space: pre-wrap; } ID - ID + ID Search ID - + @@ -10648,182 +10522,182 @@ p, li { white-space: pre-wrap; } My own identities - + Le mie identità My contacts - + Contatti Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Visibilità: Private (only visible to invited members) - + Only visible to full members of circle - + Public - Pubblico + Pubblico Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + ID dell'identità: Status: - Stato: + Stato: Full member - + Invited by admin - + Subscription request pending - + unknown - sconosciuto + sconosciuto Invited - + Subscription pending - + Member - + Edit Circle - Modifica Circolo + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10831,48 +10705,48 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + [nonVerificato] @@ -10882,7 +10756,7 @@ These identities will soon be not supported anymore. Identity owned by you, linked to your Retroshare node but not yet validated - + @@ -10897,33 +10771,33 @@ These identities will soon be not supported anymore. Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + @@ -10933,177 +10807,177 @@ These identities will soon be not supported anymore. <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + positivo negative - + negativo No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Canali + Forums - Forums + Forum Posted - Pubblicato + Chat - + Chat Unknown - Scononsciuto + Sconosciuto [Unknown] - [Scononsciuto] + [Sconosciuto] Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + @@ -11118,7 +10992,7 @@ These identities will soon be not supported anymore. Hi,<br>I want to be friends with you on RetroShare.<br> - + Ciao,<br>vorrei essere tuo amico sul network RetroShare.<br> @@ -11462,17 +11336,17 @@ These identities will soon be not supported anymore. Save image - + Salva immagine Cannot save the image, invalid filename - + Not an image - + @@ -11501,21 +11375,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - Raccomanda in un messaggio a + @@ -11762,7 +11632,7 @@ Libera un po' di spazio e clicca OK. directory is running low (current limit is - + @@ -11883,12 +11753,12 @@ Libera un po' di spazio e clicca OK. Address list: - + Recommend this friend - + @@ -11998,17 +11868,17 @@ Libera un po' di spazio e clicca OK. All addresses (mixed) - + All people - + My contacts - + Contatti @@ -12312,17 +12182,17 @@ Vuoi salvarlo? Hi,<br>I want to be friends with you on RetroShare.<br> - + Ciao,<br>vorrei essere tuo amico sul network RetroShare.<br> You have a friend invite - + Hai una richiesta di amicizia Respond now: - + Rispondi subito: @@ -12411,22 +12281,22 @@ Vuoi salvarlo? Everyone - + Tutti Contacts - Contatti + Contatti Nobody - + Nessuno Accept encrypted distant messages from - + @@ -12488,10 +12358,6 @@ Vuoi salvarlo? Edit Tag Modifica etichetta - - Message - Messaggio - Distant messages: @@ -12505,7 +12371,7 @@ Vuoi salvarlo? Mail - + @@ -12569,7 +12435,7 @@ Vuoi salvarlo? Send Invite - + Manda invito @@ -12619,12 +12485,12 @@ Vuoi salvarlo? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13182,7 +13048,7 @@ ricerca This message goes to a distant person. - + @@ -13221,7 +13087,7 @@ ricerca Mail - + @@ -13252,12 +13118,12 @@ ricerca Spoiler - + Spoiler Select text to hide, then push this button - + @@ -13275,7 +13141,7 @@ ricerca Send Invite - + Manda invito @@ -13311,12 +13177,12 @@ ricerca from - Da + Reply to invite - + @@ -13346,12 +13212,12 @@ ricerca Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13424,22 +13290,6 @@ ricerca Name Nome - - Did I authenticated peer - Ho autentificato contatto - - - Did I sign his PGP key - Ho firmato la sua chiave PGP - - - Cert Id - ID certificata - - - Last used - Ultimi usati - Clear @@ -13517,7 +13367,7 @@ ricerca - 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. @@ -13560,52 +13410,6 @@ Per sicurezza, il tuo portachiavi è stato precedentemente salvato su di un file Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Impossibile creare il file di salvataggio, Controlla i permessi sulla cartella di pgp, lo spazio sul disco, ecc. - - Personal signature - Firma personale - - - PGP key signed by you - Chiave PGP firmata da te - - - Marginally trusted peer - Contatto con fiducia marginale - - - Fully trusted peer - Contatto con fiducia piena - - - Untrusted peer - Contatto con fiducia nulla - - - Last hour - Ultima ora - - - Today - Oggi - - - Never - Mai - - - %1 days ago - %1 giorni fa - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - ti ha autentificato. -Clic-destro e seleziona 'fatti amico' per poterti connettere. - - - yourself - te stesso - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13621,10 +13425,6 @@ Clic-destro e seleziona 'fatti amico' per poterti connettere.Trusted keys only Solo chiavi fidate - - Trust level - Livello fiducia - Search name @@ -13638,7 +13438,7 @@ Clic-destro e seleziona 'fatti amico' per poterti connettere. Profile details... - + @@ -13714,7 +13514,7 @@ Errore riportato: Log entries - + @@ -13744,12 +13544,12 @@ Errore riportato: <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13788,7 +13588,7 @@ Errore riportato: Chat Room - + @@ -13825,27 +13625,27 @@ Errore riportato: Friend Connected - Amico connesso + Circles - Circoli + Links - + Link Mails - + Chats - + Chat @@ -13870,32 +13670,32 @@ Errore riportato: Chat rooms - + Chat room Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Maiusc./minusc. significativo + @@ -13988,31 +13788,23 @@ Errore riportato: 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 Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + @@ -14022,7 +13814,7 @@ Errore riportato: Please enter your Retroshare passphrase - + @@ -14113,7 +13905,7 @@ Errore riportato: - 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 @@ -14125,13 +13917,13 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14144,12 +13936,12 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti Profile info - + Name : - Nome: + Nome: @@ -14159,7 +13951,7 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti <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> - + @@ -14169,7 +13961,7 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti <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> - + @@ -14204,7 +13996,7 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti This profile has signed your own profile key - + @@ -14214,36 +14006,36 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti <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;">Firmare la chiave di un amico è un modo di esprimergli la tua fiducia davanti agli altri amici. Le firme qui sotto attestano crittologicamente che i possessori delle chiavi elencate riconoscono l'attuale chiave PGP come autentica.</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;"> +</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 key - + Firma questa chiave PGP key - + Chiave PGP These options apply to all nodes of the profile: - + <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;">Firmare la chiave di un amico è un modo di esprimergli la tua fiducia davanti agli altri amici. Li aiuta a decidere quando accettare connessioni basate su quella chiave, fidandosi di te. Firmare una chiave è assolutamente facoltativo e la firma non si può revocare, quindi scegli saggiamente quando farlo.</span></p></body></html> @@ -14253,7 +14045,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> - + @@ -14263,7 +14055,7 @@ p, li { white-space: pre-wrap; } <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> - + @@ -14273,12 +14065,12 @@ p, li { white-space: pre-wrap; } Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14288,53 +14080,53 @@ p, li { white-space: pre-wrap; } Options - Opzioni + Opzioni <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">Retroshare cerca periodicamente, nelle liste dei tuoi amici, files corrispondenti ai tuoi trasferimenti, così da poter stabilire dei trasferimenti diretti. In questo caso, il tuo amico saprà che tu stai scaricando uno dei suoi files.</p><p align="justify">Per prevenire questo comportamento solo per questo amico, deseleziona questa opzione. Puoi comunque effettuare un trasferimento diretto se lo richiedi esplicitamente, ad es. scaricando qualcosa dalla lista di files del tuo amico. Questa impostazione è applicata a tutte le locazioni dello stesso nodo.</p></body></html> Use as direct source, when available - Usa come fonte diretta, quando disponibile + <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. Applied to all locations of the same node.</p></body></html> - + <html><head/><body><p>Questa opzione ti permette di scaricare automaticamente un file raccomandato in un qualche messaggio arrivato da questo nodo. Può essere utile, ad esempio, per inviare files tra i tuoi nodi. L'opzione viene applicata a tutte le locazioni dello stesso nodo.</p></body></html> Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + <html><head/><body><p>Gli utenti con questa opzione abilitata non possono connettersi se il loro indirizzo di connessione non è nella lista degli indirizzi permessi. Questo ti protegge da attacchi basati sul traffico. Quando l'opzione viene utilizzata, gli utenti rifiutati vengono riportati su &quot;elementi sulla sicurezza dei dati in arrivo&quot; nella sezione relativa alle novità sui dati in arrivo. Da li, potrai permettere/bloccare i loro indizzi IP. Si applica a tutte le locazioni dello stesso nodo.</p></body></html> Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + kB/s @@ -14360,13 +14152,13 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + @@ -14431,7 +14223,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Retroshare profile - + Profilo Retroshare @@ -14518,7 +14310,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14548,7 +14340,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14620,37 +14412,37 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat with this person - Conversa con questa persona + Chat with this person as... - Conversa con questa persona come... + Send message to this person - + Person details - + Distant chat cannot work - La conversazione a distanza non può funzionare + Distant chat refused with this person. - Conversazione a distanza con questa persona: rifiutata. + Error code - Codice errore + Codice errore @@ -14658,68 +14450,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - Persone + Reputation - Reputazione + Reputazione <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + giorni <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14810,7 +14602,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14823,7 +14615,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14836,9 +14628,9 @@ 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: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> - + @@ -14979,7 +14771,7 @@ requesting to edit it! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> <span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"> Altro... @@ -15053,44 +14845,28 @@ Altro... Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - - - - 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 @@ -15117,7 +14893,7 @@ Altro... Widget for plugin %1 not found on plugins frame - + @@ -15273,29 +15049,25 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin PopupDistantChatDialog - - 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. - Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + @@ -15307,14 +15079,6 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Kill the tunnel? Terminare il 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. - PostedCreatePostDialog @@ -15384,7 +15148,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -15414,7 +15178,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Links - + Link @@ -15460,7 +15224,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Subscribe to Posted - + @@ -15476,7 +15240,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Posted Description - + @@ -15486,7 +15250,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin New Posted - + @@ -15547,12 +15311,12 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin New Comment: - + Nuovo commento: Comment Value - + @@ -15660,10 +15424,6 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Tabs Tabs - - Posted - Pubblicato - Open each topic in a new tab @@ -15672,7 +15432,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Links - + @@ -15734,13 +15494,13 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -16049,51 +15809,35 @@ and open the Make Friend Wizard. Clicca per aggiungere questo certificato RetroShare al tuo portachiavi PGP e aprire la procedura guidata Fatti Amici. - - Add file - Aggiungi file - - - Add files - Aggiungi files - - - Do you want to process the link ? - Vuoi elaborare il collegamento? - - - Do you want to process %1 links ? - Vuoi elaborare il collegamento %1? - Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16208,17 +15952,17 @@ and open the Make Friend Wizard. Posted not found - + Posted message not found - + Posted messages not found - + @@ -16228,22 +15972,22 @@ and open the Make Friend Wizard. Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + @@ -16263,7 +16007,7 @@ and open the Make Friend Wizard. Chat room not found - + @@ -16356,36 +16100,36 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16420,20 +16164,12 @@ Blocco del file: Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Il tunnel è in attesa... - - - Secured tunnel is working. You can talk! - Il tunnel sicuro sta funzionando. Puoi parlare! + @@ -16454,7 +16190,7 @@ L’errore segnalato è: %1 (%2, Extra - Source included) - + @@ -16474,22 +16210,22 @@ L’errore segnalato è: TR up - + TR dn - + Data up - + Data dn - + @@ -16597,12 +16333,12 @@ L’errore segnalato è: Security: no anonymous IDs - + Join chat room - + @@ -16628,122 +16364,122 @@ Security: no anonymous IDs Indefinitely - + 5 days - + 5 giorni 2 weeks - + 2 settimane 1 month - + 1 mese 2 month - + 2 mesi 6 month - + 6 mesi 1 year - + 1 anno days - + giorni Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - Scononsciuto + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16758,12 +16494,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16886,10 +16622,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16956,9 +16692,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16973,8 +16709,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -17158,17 +16894,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -17189,79 +16925,12 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - RelayPage - - Enable Relay Connections - Abilita connessione relé - - - Use Relay Servers - Usa servers relé - - - Relay options - Opzioni relé - - - Number - Numero - - - Bandwidth per link - Larghezza Banda per collegamento - - - Total Bandwidth - Larghezza Banda totale - - - Friends - Amici - - - kB/s - KB/s - - - Friends of Friends - Amici di amici - - - General - Generale - - - Total: - Totale: - - - Relay Server Setup - Parametri server relé - - - Add Server - Aggiungi server - - - Server DHT Key - Chiave server DHT - - - Remove Server - Rimuovi server - - - Relay - Relé - - RemoteSharedFilesDialog Download... - + @@ -17271,11 +16940,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Raccomanda in un messaggio a + @@ -17288,12 +16953,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + @@ -17303,7 +16968,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + @@ -17373,32 +17038,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - File esistente. + What do you want to do? - Cosa vuoi fare ? + Overwrite - Sovrascrivi + Merge - Unisci + Cancel - Annulla + @@ -17421,12 +17086,12 @@ p, li { white-space: pre-wrap; } Destination: - + Right click to change download directory - + @@ -17462,7 +17127,7 @@ p, li { white-space: pre-wrap; } 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. Alcuni nomi di nomi di file o directory contenevano caratteri vietati. Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostituiti da '_'. @@ -17482,30 +17147,22 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit <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>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> - - >> - >> - <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> - - + - + - Remove Duplicate - + @@ -17520,26 +17177,22 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit File Path - + Percorso file File Count Conteggio File - - This is the root directory. - Questa cartella è la root. - Real Size: Waiting child... - + Real File Count: Waiting child... - + @@ -17549,17 +17202,17 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Download files - + Specify... - Specifica... + Choose directory - Scegli la cartella + @@ -17601,12 +17254,12 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + @@ -17676,30 +17329,6 @@ If you believe it is correct, remove the corresponding line from the file and re 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 ? - - - Overwrite - Sovrascrivi - - - Merge - Unisci - - - Cancel - Annulla - - - File already exists. - File esistente. - RsDownloadListModel @@ -17707,128 +17336,119 @@ Se ritieni sia corretto, rimuovi dal file la riga corrispondente e ri-aprilo con Name i.e: file name - Nome + Size i.e: file size - + Completed - Completato + Speed i.e: Download speed - Velocità + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - Fonti + Status - + Speed / Queue position - Velocità / Posizione in coda + Remaining - Restante + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - Ultima volta visto + Path i.e: Where file is saved - + Failed - Fallito + Okay - OK + Waiting - in attesa + Downloading - In scaricamento + Complete - Completo + Queued - Accodato + Paused - In pausa + Checking... - Verifica... + Unknown - Scononsciuto - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - L'immagine è sovradimensionata per la trasmissione. -Riduzione immagine a %1x%2 pixel? + @@ -17855,7 +17475,7 @@ Riduzione immagine a %1x%2 pixel? filename - + @@ -17865,7 +17485,7 @@ Riduzione immagine a %1x%2 pixel? level - + @@ -17875,7 +17495,7 @@ Riduzione immagine a %1x%2 pixel? style - + @@ -17885,7 +17505,7 @@ Riduzione immagine a %1x%2 pixel? stylesheet - + @@ -17895,17 +17515,13 @@ Riduzione immagine a %1x%2 pixel? language - + Sets RetroShare's language. Definisci lingua RetroShare - - RetroShare Usage Information - Informazioni uso RetroShare - Unable to open log file '%1': %2 @@ -17915,7 +17531,7 @@ Riduzione immagine a %1x%2 pixel? Invalid operating mode specified: - + @@ -17935,32 +17551,32 @@ Riduzione immagine a %1x%2 pixel? opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + @@ -17984,7 +17600,7 @@ Riduzione immagine a %1x%2 pixel? Registry Access Error. Maybe you need Administrator right. - + @@ -18331,7 +17947,7 @@ Riduzione immagine a %1x%2 pixel? but reported: - + @@ -18525,10 +18141,6 @@ Riduzione immagine a %1x%2 pixel? Network Mode Modalità Rete - - Nat - Nat - Automatic (UPnP) @@ -18573,7 +18185,7 @@ Riduzione immagine a %1x%2 pixel? NAT - + @@ -18611,15 +18223,11 @@ Riduzione immagine a %1x%2 pixel? Known / Previous IPs: IP conosciuti / precedenti: - - Show Discovery information in statusbar - Mostra informazioni scoperta nella barra di stato - 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. Se si deseleziona questo, RetroShare può determinare solo il tuo IP quando si connette a qualcuno. Lasciare questo selezionato, aiuta a connettersi quando si hanno pochi amici. Aiuta anche se sei dietro un firewall o una VPN. @@ -18661,7 +18269,7 @@ behind a firewall or a VPN. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + @@ -18712,12 +18320,12 @@ behind a firewall or a VPN. BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18726,111 +18334,111 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - sconosciuto + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + @@ -18885,138 +18493,138 @@ Controlla anche le tue porte! WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Start + Restart - + Stop - Stop + BOB status - + Incoming - In arrivo + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -19030,101 +18638,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - Abilita connessione relé + Use Relay Servers - Usa servers relé + Relay options - Opzioni relé + Number - Numero + Bandwidth per link - Larghezza Banda per collegamento + Total Bandwidth - Larghezza Banda totale + Friends - Amici + Friends of Friends - Amici di amici + General - Generale + Total: - Totale: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Parametri server relé + Add Server - Aggiungi server + Server DHT Key - Chiave server DHT + Remove Server - Rimuovi server + - <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>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> - + @@ -19139,7 +18747,7 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + @@ -19219,19 +18827,15 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + @@ -19241,23 +18845,19 @@ If you have issues connecting over Tor check the Tor logs too. <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 - - Incoming Service Connections - Connessioni di Servizio in Entrata - @@ -19277,7 +18877,7 @@ If you have issues connecting over Tor check the Tor logs too. <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> - + @@ -19287,34 +18887,12 @@ If you have issues connecting over Tor check the Tor logs too. 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. + @@ -19364,10 +18942,6 @@ Se riscontri problemi nella connessione attraverso Tor, controlla anche i log di <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> @@ -19401,12 +18975,12 @@ Se riscontri problemi nella connessione attraverso Tor, controlla anche i log di Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + @@ -19485,7 +19059,7 @@ Se riscontri problemi nella connessione attraverso Tor, controlla anche i log di Form - + Modulo @@ -19493,7 +19067,7 @@ Se riscontri problemi nella connessione attraverso Tor, controlla anche i log di Preferences - + Preferenze @@ -19536,32 +19110,32 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Shared directory - + Visible name - + Access - + Visibility - Visibilità + Visibilità Add new - + Cancel - Annulla + @@ -19586,52 +19160,52 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Choose directory - Scegli la cartella + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19646,7 +19220,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Choose a directory to share - + @@ -19680,11 +19254,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Configure shared directories - - - - Search files - Ricerca file + @@ -19756,18 +19326,10 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Send retroshare Links Invia collegamento RetroShare - - Send retroshare Links to Cloud - Invia collegamento RetroShare al Cloud - - - Add Links to Cloud - Aggiungere collegamenti a Cloud - Some files have been omitted - + @@ -19803,17 +19365,17 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19862,7 +19424,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Lobby - + @@ -19923,10 +19485,6 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. SplashScreen - - Load profile - Carica profilo - Load configuration @@ -19945,15 +19503,11 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. RetroShare RetroShare - - Login - Login - Password - Parola chiave + @@ -19979,9 +19533,9 @@ Le identità/posizioni attuali non saranno toccate. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19996,7 +19550,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -20005,18 +19559,6 @@ p, li { white-space: pre-wrap; } Warning Avvertimento - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. @@ -20138,7 +19680,7 @@ Questa scelta può essere ripristinata in Impostazioni. Gxs Transport - + @@ -20330,7 +19872,7 @@ Questa scelta può essere ripristinata in Impostazioni. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20343,7 +19885,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20439,7 +19981,7 @@ p, li { white-space: pre-wrap; } Remove this item - + @@ -20594,58 +20136,58 @@ p, li { white-space: pre-wrap; } Dialog - Dialogo + Setting up Tor... - + Tor status: - + Unknown - Scononsciuto + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20653,28 +20195,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20692,98 +20234,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Automatically share incoming directory (Recommended) - Condividi automaticamente cartella ricezione (Raccomandato) + Edit Share - + Auto-check shared directories every - + minute(s) - + minuto(i) <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - Scorri + Partials Directory - + Maximum uploads per friend (0 = no limit) - + @@ -20798,12 +20340,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Cifratura end-to-end: Allow direct download: - + @@ -20828,50 +20370,50 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - No + No Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + @@ -20896,17 +20438,17 @@ p, li { white-space: pre-wrap; } Set Incoming Directory - + Set Partials Directory - + Files - Files + File @@ -20968,21 +20510,6 @@ p, li { white-space: pre-wrap; } Completed Completato - - Speed - i.e: Download speed - Velocità - - - Progress / Availability - i.e: % downloaded - Progressione / Disponibilità - - - Sources - i.e: Sources - Fonti - Status @@ -20998,16 +20525,6 @@ p, li { white-space: pre-wrap; } Remaining Restante - - Download time - i.e: Estimated Time of Arrival / Time left - Tempo scaricamento - - - Peer - i.e: user name - Contatto - Progress @@ -21062,7 +20579,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Contatto + @@ -21211,77 +20728,16 @@ p, li { white-space: pre-wrap; } Choose directory Scegli la cartella - - Failed - Fallito - - - Okay - OK - - - Waiting - in attesa - - - Downloading - In scaricamento - - - Complete - Completo - - - Queued - Accodato - - - Paused - In pausa - - - Checking... - Verifica... - - - Unknown - Scononsciuto - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Se l'hash del file scaricato non corrisponde con quello del file di originario, i dati sono danneggiati. - -RetroShare chiederà alla fonte una mappa dettagliata dei dati; Controllerà i blocchi del file e se alcuni sono danneggiati li scaricherà di nuovo. - -Sii paziente! - - - Transferring - In trasferimento - - - Uploading - In caricamento - Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Tunnel @@ -21341,15 +20797,6 @@ Sii paziente! Please enter a new--and valid--filename Per favore inserisci un nuovo--e valido--nome per il file - - Last Time Seen - i.e: Last Time Receiced Data - Ultima volta visto - - - UserID - IDUtente - @@ -21457,11 +20904,6 @@ Sii paziente! File Transfers Trasferimento file - - Path - i.e: Where file is saved - Tracciato - Path @@ -21505,21 +20947,17 @@ Sii paziente! %1 tunnels - + %1 tunnel Anonymous tunnel 0x Tunnel anonimo 0x - - version: - versione: - Files - Files + File @@ -21551,7 +20989,7 @@ Sii paziente! Empty - + Vuoto @@ -21562,7 +21000,7 @@ Sii paziente! Friends Directories [updating...] - + @@ -21572,7 +21010,7 @@ Sii paziente! My Directories [updating...] - + @@ -21582,7 +21020,7 @@ Sii paziente! # Files - + # file @@ -21602,22 +21040,22 @@ Sii paziente! Access - + Visibility - Visibilità + Visibilità Column %1 - + Colonna %1 Row %1 - + Riga %1 @@ -21666,7 +21104,7 @@ Sii paziente! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21712,12 +21150,12 @@ Sii paziente! Anonymous tunnels - + Tunnel anonimi Authenticated tunnels - + Tunnel autenticati @@ -21914,38 +21352,22 @@ Sii paziente! Port: - Porta: + Porta: Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - Porta : - - - 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. + @@ -22599,134 +22021,133 @@ Sii paziente! Do you accept connections signed by this profile? - + Name of the profile - + Nome del profilo This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Profilo Trust level - Livello fiducia + Has signed your key? - + Id - + Id Last used - Ultimi usati + Personal signature - Firma personale + Marginally trusted peer - Contatto con fiducia marginale + Fully trusted peer - Contatto con fiducia piena + Untrusted peer - Contatto con fiducia nulla + Yes - + No - No + No Last hour - Ultima ora + Today - Oggi + Oggi Never - Mai + Mai %1 days ago - %1 giorni fa + %1 giorni fa Accepted - + - - + PGP key signed by you - Chiave PGP firmata da te + has authenticated you. Right-click and select 'make friend' to be able to connect. - ti ha autentificato. -Clic-destro e seleziona 'fatti amico' per poterti connettere. + - + \ 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 364da6d12..3d3a5c8d5 100644 Binary files a/retroshare-gui/src/lang/retroshare_ja_JP.qm and b/retroshare-gui/src/lang/retroshare_ja_JP.qm differ diff --git a/retroshare-gui/src/lang/retroshare_ja_JP.ts b/retroshare-gui/src/lang/retroshare_ja_JP.ts index abd0cbcde..677e55957 100644 --- a/retroshare-gui/src/lang/retroshare_ja_JP.ts +++ b/retroshare-gui/src/lang/retroshare_ja_JP.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + Retroshareバージョン version - + バージョン @@ -28,7 +26,7 @@ About - バージョン情報 + バージョン情報 @@ -36,52 +34,52 @@ Form - フォーム + フォーム About - バージョン情報 + バージョン情報 Copy Info - + 情報をコピーする close - + 閉じる Max score: %1 - + 最大スコア: %1 Score: %1 - + スコア: %1 Level: %1 - + レベル: %1 About RetroShare - RetroShare について + RetroShare について Have fun ;-) - + 楽しんで ;-) Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + コメントを追加 @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file このファイルはシステムのデフォルトのコマンドを決定できません @@ -171,117 +169,117 @@ Create Album - + アルバムを作成 Album Name: - + アルバム名: Category: - + カテゴリー Animals - + 動物 Family - + 家庭 Friends - + 友達 Flowers - + Holiday - + 旅行 Landscapes - + 風景 Pets - + ペット Portraits - + 肖像画 Travel - + トラベル Work - + 仕事 Random - + ランダム Caption: - + キャプション Where: - + 位置: Photographer: - + 写真家: Description: - + 説明: Share Options - + 共有のオプション Policy: - + ポリシー: Quality: - + 画質: Comments: - + コメント: Identity: - + @@ -291,51 +289,51 @@ Restricted - + Resize Images (< 1Mb) - + イメージのサイズを変更 (< 1Mb) Resize Images (< 10Mb) - + イメージのサイズを変更 (< 10Mb) Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -345,32 +343,32 @@ p, li { white-space: pre-wrap; } Add Photos - + 写真を追加 Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + いつ撮りましたか? Load Album Thumbnail - + @@ -379,101 +377,101 @@ p, li { white-space: pre-wrap; } Album - + アルバム Album Thumbnail - + TextLabel - + ラベル Summary - + Album Title: - + Category: - + カテゴリー Caption - + Where: - + 位置: When - + Description: - + 説明: Share Options - + 共有のオプション Comments - + コメント Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + 写真を追加 Edit Photo - + 写真を編集 Delete Photo - + 写真を削除 Publish Photos - + @@ -488,25 +486,25 @@ p, li { white-space: pre-wrap; } TextLabel - + ラベル <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -519,12 +517,12 @@ p, li { white-space: pre-wrap; } Choose the language used in RetroShare - + (Needs restart) - + (再起動は必要です) @@ -534,7 +532,7 @@ p, li { white-space: pre-wrap; } Choose RetroShare's interface style - + Retoroshare のインターフェイス スタイルを設定. @@ -549,152 +547,152 @@ p, li { white-space: pre-wrap; } Tool Bar - + ツールバー Icon Only - + アイコンのみ Text Only - + 文字のみ Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + アイコンサイズ = 8x8 Icon Size = 16x16 - + アイコンサイズ = 16x16 Icon Size = 24x24 - + アイコンサイズ = 24x24 Icon Size = 64x64 - + アイコンサイズ = 64x64 Icon Size = 128x128 - + アイコンサイズ = 128x128 Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + コンパクトモード Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + ボタン Item list - + Icon Size = 32x32 - + アイコンサイズ = 32x32 @@ -709,37 +707,37 @@ 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -765,17 +763,17 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + @@ -785,12 +783,12 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - + Load Avatar - + @@ -806,7 +804,7 @@ p, li { white-space: pre-wrap; } KB/s - + KB/s @@ -814,7 +812,7 @@ p, li { white-space: pre-wrap; } N/A - + N/A @@ -897,33 +895,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + KB/s Count - カウント + Average - + Total - + @@ -941,62 +939,62 @@ p, li { white-space: pre-wrap; } In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + @@ -1009,57 +1007,57 @@ p, li { white-space: pre-wrap; } Form - フォーム + フォーム Friend: - + 友達: Type: - タイプ + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1067,12 +1065,12 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + @@ -1082,12 +1080,12 @@ p, li { white-space: pre-wrap; } Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1095,7 +1093,7 @@ p, li { white-space: pre-wrap; } Name - 名前 + 名前 @@ -1105,52 +1103,48 @@ p, li { white-space: pre-wrap; } Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 話題: %1 - - Lobby management - ロビー管理 - %1 changed his name to: %2 @@ -1159,120 +1153,120 @@ p, li { white-space: pre-wrap; } Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - 検索 + 検索 Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1288,38 +1282,38 @@ p, li { white-space: pre-wrap; } Chats - + チャット You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1343,106 +1337,106 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + プライベートチャット Public chat rooms - + 公開チャット <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - RetroShareリンクをコピー + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1458,7 +1452,7 @@ Double click a chat room to enter and chat. Selected lobby info - + @@ -1473,37 +1467,37 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + @@ -1518,22 +1512,22 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + 話題: @@ -1543,12 +1537,12 @@ Double click a chat room to enter and chat. Security: - + Peers: - + @@ -1558,36 +1552,36 @@ Double click a chat room to enter and chat. TextLabel - + ラベル Default identity is anonymous - + No anonymous IDs - + Show - + column - + Chats - + チャット @@ -1645,27 +1639,27 @@ Double click a chat room to enter and chat. Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + @@ -1675,7 +1669,7 @@ Double click a chat room to enter and chat. Enable Emoticons Private Chat - + @@ -1685,32 +1679,32 @@ Double click a chat room to enter and chat. Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + @@ -1720,27 +1714,27 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + @@ -1750,22 +1744,22 @@ Double click a chat room to enter and chat. Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + @@ -1798,14 +1792,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1822,7 +1816,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1872,51 +1866,47 @@ Double click a chat room to enter and chat. UserName - + ユーザ名 /me is sending a message with /me - - - - 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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1926,72 +1916,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + 名前: PGP id : - + PGP id : Valid until : - + Chats - + @@ -2073,7 +2063,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2083,7 +2073,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2139,48 +2129,48 @@ Double click a chat room to enter and chat. Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2191,18 +2181,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2232,145 +2222,141 @@ after HTML conversion. appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - メッセージは友達がオンラインになったときに送信されます。 + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2378,12 +2364,12 @@ Double click on it to add his name on text writer. TextLabel - + ラベル Empty Circle - + @@ -2391,12 +2377,12 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + @@ -2413,17 +2399,17 @@ Double click on it to add his name on text writer. Personal Circles - + Public Circles - + Peers - + @@ -2439,83 +2425,83 @@ Double click on it to add his name on text writer. Friends - + 友達 Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2525,10 +2511,6 @@ Double click on it to add his name on text writer. Details 詳細 - - Peer Address - ピア アドレス - @@ -2543,12 +2525,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2561,14 +2543,10 @@ Double click on it to add his name on text writer. Port ポート - - Addresses list - アドレス リスト - Include signatures - + @@ -2587,118 +2565,118 @@ Double click on it to add his name on text writer. Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - 名前: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + none - + <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2706,94 +2684,94 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + @@ -2803,22 +2781,22 @@ Double click on it to add his name on text writer. Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + @@ -2828,107 +2806,107 @@ Double click on it to add his name on text writer. Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + RetroShare is better with Friends - + Invite your Friends from other Networks to RetroShare. - + GMail - + Yahoo - + Outlook - + AOL - + Yandex - + Email - Eメール + Invite Friends by Email - + Enter your friends' email addresses (separate each one with a semicolon) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2940,18 +2918,18 @@ Double click on it to add his name on text writer. 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. - + @@ -2963,86 +2941,86 @@ resources. 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 - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + @@ -3052,67 +3030,67 @@ resources. Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + @@ -3123,160 +3101,160 @@ resources. Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + None - + No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -3289,129 +3267,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3419,69 +3397,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3489,241 +3467,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + ラベル Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3732,201 +3710,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3934,42 +3912,42 @@ p, li { white-space: pre-wrap; } N/A - + N/A UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3980,7 +3958,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -3990,12 +3968,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4010,28 +3988,28 @@ p, li { white-space: pre-wrap; } Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4046,47 +4024,47 @@ p, li { white-space: pre-wrap; } Name: - 名前: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - プライベート + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4098,17 +4076,17 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4118,7 +4096,7 @@ p, li { white-space: pre-wrap; } Remove - + @@ -4129,75 +4107,75 @@ p, li { white-space: pre-wrap; } All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - 閉じる + Create New Circle - + Create - 作成 + PGP Linked Id - + Add Member - + Remove Member - + @@ -4206,38 +4184,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + 友達 Edit Group - + @@ -4246,43 +4224,43 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + @@ -4293,27 +4271,27 @@ p, li { white-space: pre-wrap; } Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + @@ -4324,17 +4302,17 @@ p, li { white-space: pre-wrap; } Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -4350,7 +4328,7 @@ p, li { white-space: pre-wrap; } File already Added and Hashed - + @@ -4360,33 +4338,33 @@ p, li { white-space: pre-wrap; } Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4395,12 +4373,12 @@ p, li { white-space: pre-wrap; } Post Forum Message - + Forum - + @@ -4410,47 +4388,47 @@ p, li { white-space: pre-wrap; } Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + @@ -4462,23 +4440,23 @@ p, li { white-space: pre-wrap; } Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4488,23 +4466,23 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + @@ -4514,12 +4492,12 @@ Do you want to discard this message? Post as - + Congrats, you found a bug! - + @@ -4527,87 +4505,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4615,7 +4593,7 @@ Do you want to discard this message? Public Information - + @@ -4630,52 +4608,52 @@ Do you want to discard this message? Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + @@ -4685,7 +4663,7 @@ Do you want to discard this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -4695,57 +4673,57 @@ Do you want to discard this message? RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + ラベル PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4753,7 +4731,7 @@ Do you want to discard this message? users - + @@ -4761,38 +4739,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4800,42 +4778,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4853,52 +4831,52 @@ Do you want to discard this message? Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + Copy link to clipboard - + Rating - + Comments - + コメント File Name - + @@ -4906,27 +4884,27 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + @@ -4941,365 +4919,365 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + Source - + Proxy - + Destination - + Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + None - + Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + Unknown - + RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5308,27 +5286,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5336,113 +5314,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5450,12 +5428,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5463,7 +5441,7 @@ Do you want to discard this message? Start file - + @@ -5473,36 +5451,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5510,12 +5488,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5523,52 +5501,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5576,47 +5554,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5624,52 +5602,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5677,73 +5655,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5751,52 +5729,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5804,47 +5782,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages - + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5858,69 +5836,69 @@ Do you want to discard this message? ID - ID + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + @@ -5931,219 +5909,219 @@ Do you want to discard this message? Copy certificate link - + Add to group - + Search - 検索 + 検索 Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6151,42 +6129,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6194,17 +6172,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6212,17 +6190,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6232,17 +6210,17 @@ at least one peer was not added to a group Search Friends - + Mark all - + Mark none - + @@ -6250,13 +6228,13 @@ at least one peer was not added to a group Edit status message - + Broadcast - + @@ -6266,27 +6244,27 @@ at least one peer was not added to a group Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + @@ -6308,7 +6286,7 @@ at least one peer was not added to a group Add a new Group - + @@ -6324,12 +6302,12 @@ at least one peer was not added to a group Create new Chat lobby - + Choose Font - + @@ -6339,33 +6317,33 @@ at least one peer was not added to a group Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6373,12 +6351,12 @@ at least one peer was not added to a group Create new Profile - + Password - + @@ -6388,7 +6366,7 @@ at least one peer was not added to a group Passwords do not match - + @@ -6398,145 +6376,145 @@ at least one peer was not added to a group Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6545,131 +6523,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6677,128 +6655,128 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + Misc - + Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + @@ -6808,7 +6786,7 @@ and use the import button to load it Minimize to Tray Icon - + @@ -6817,44 +6795,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6866,31 +6844,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> @@ -6903,118 +6881,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7022,82 +7000,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - ID + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - 詳細 + Unknown Peer - + Pending packets - + Unknown - + @@ -7105,22 +7083,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7128,7 +7106,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7136,7 +7114,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7144,27 +7122,27 @@ p, li { white-space: pre-wrap; } Friends - + 友達 Family - + 家庭 Co-Workers - + Other Contacts - + Favorites - + @@ -7172,72 +7150,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7250,7 +7228,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7258,47 +7236,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7306,12 +7284,12 @@ p, li { white-space: pre-wrap; } Title - + タイトル Search Title - + @@ -7321,73 +7299,73 @@ p, li { white-space: pre-wrap; } Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - 最新の投稿 + Never - + Display - 表示 + Subscribe to download and read messages - + @@ -7395,17 +7373,17 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + @@ -7415,27 +7393,27 @@ p, li { white-space: pre-wrap; } Path - + Extension - + Hash - + Date - + 期日 Size - + @@ -7445,47 +7423,47 @@ p, li { white-space: pre-wrap; } contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7494,7 +7472,7 @@ p, li { white-space: pre-wrap; } Channels - + @@ -7509,12 +7487,12 @@ p, li { white-space: pre-wrap; } 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7534,7 +7512,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + @@ -7544,18 +7522,18 @@ p, li { white-space: pre-wrap; } Set download directory - + [Default directory] - + Specify... - + @@ -7573,42 +7551,42 @@ p, li { white-space: pre-wrap; } TextLabel - + ラベル Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7621,22 +7599,22 @@ p, li { white-space: pre-wrap; } Filename - + Size - + Title - + タイトル Published - + @@ -7649,32 +7627,32 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + @@ -7726,12 +7704,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + @@ -7753,12 +7731,12 @@ p, li { white-space: pre-wrap; } Comments - + コメント Edit - + @@ -7779,7 +7757,7 @@ p, li { white-space: pre-wrap; } Set as read and remove item - + @@ -7799,7 +7777,7 @@ p, li { white-space: pre-wrap; } Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + @@ -7814,7 +7792,7 @@ p, li { white-space: pre-wrap; } 0 - 0 + 0 @@ -7825,12 +7803,12 @@ p, li { white-space: pre-wrap; } I like this - + I dislike this - + @@ -7840,17 +7818,17 @@ p, li { white-space: pre-wrap; } Comments - + Open - + Open File - + @@ -7869,7 +7847,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -7879,37 +7857,37 @@ p, li { white-space: pre-wrap; } Search channels - + Title - + タイトル Search Title - + Message - + Search Message - + Filename - + Search Filename - + @@ -7919,32 +7897,32 @@ p, li { white-space: pre-wrap; } Never - + Public - パブリック + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -7959,38 +7937,38 @@ p, li { white-space: pre-wrap; } Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + Feeds - + @@ -8000,17 +7978,17 @@ p, li { white-space: pre-wrap; } Subscribers - + Description: - + 説明 Posts (at neighbor nodes): - + @@ -8018,7 +7996,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8026,48 +8004,48 @@ p, li { white-space: pre-wrap; } Details - 詳細 + Remove Item - アイテムを削除 + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8075,7 +8053,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8088,7 +8066,7 @@ p, li { white-space: pre-wrap; } Hot - + @@ -8098,17 +8076,17 @@ p, li { white-space: pre-wrap; } Top - + Voter ID: - + Refresh - + @@ -8118,32 +8096,32 @@ p, li { white-space: pre-wrap; } Author - + Date - + 期日 Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8151,27 +8129,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8179,32 +8157,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8212,32 +8190,32 @@ before you can comment Create New Forum - + Forum - + Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + @@ -8250,7 +8228,7 @@ before you can comment Subscribe to Forum - + @@ -8266,7 +8244,7 @@ before you can comment Forum Description - + @@ -8276,7 +8254,7 @@ before you can comment New Forum - + @@ -8290,12 +8268,12 @@ before you can comment Subject: - + Unsubscribe To Forum - + @@ -8306,7 +8284,7 @@ before you can comment Set as read and remove item - + @@ -8316,7 +8294,7 @@ before you can comment In Reply to: - + @@ -8326,7 +8304,7 @@ before you can comment Forum Feed - + @@ -8344,12 +8322,12 @@ before you can comment Start new Thread for Selected Forum - + Search forums - + @@ -8359,41 +8337,41 @@ before you can comment New Thread - + Threaded View - + Flat View - + Title - + タイトル Date - + 期日 Author - + Save image - + @@ -8404,102 +8382,102 @@ before you can comment Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + Search Title - + Search Date - + Search Author - + Content - + Search Content - + <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> - + No name - + Reply - + Start New Thread - + Expand all - + Collapse all - + Mark as read - + with children - + Mark as unread - + @@ -8519,94 +8497,94 @@ before you can comment [Banned] - + [unknown] - + Public - パブリック + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + none - + [ ... Missing 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> - + @@ -8624,7 +8602,7 @@ before you can comment No Forum Selected! - + @@ -8632,154 +8610,154 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + @@ -8789,22 +8767,22 @@ prevents the message to be forwarded to your friends. On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + @@ -8814,7 +8792,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8822,7 +8800,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8830,38 +8808,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8869,12 +8847,12 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + @@ -8893,27 +8871,27 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + @@ -8924,7 +8902,7 @@ prevents the message to be forwarded to your friends. Message Distribution - + @@ -8937,138 +8915,138 @@ prevents the message to be forwarded to your friends. Publish Signatures - + Open - + New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + コメント Allow Comments - + No Comments - + Spam-protection - + Comments: - + コメント: TextLabel - + ラベル Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - + Only friends nodes in group - + @@ -9078,38 +9056,38 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + 所有者: Set a descriptive description here - + @@ -9129,52 +9107,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9184,17 +9162,17 @@ prevents the message to be forwarded to your friends. Posts - + Author - + GxsIdLabel - + @@ -9207,17 +9185,17 @@ prevents the message to be forwarded to your friends. Todo - + Print - + 印刷 PrintPreview - + @@ -9232,74 +9210,74 @@ prevents the message to be forwarded to your friends. Open in new tab - + Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 5日 2 weeks - + 2週間 1 month - + 一ヶ月 3 months - + 三ヶ月 6 months - + 六ヶ月 1 year - + 一年間 Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9309,17 +9287,17 @@ prevents the message to be forwarded to your friends. Mark all as read - + すべてを既読に設定 Mark all as unread - + すべてを未読に設定 AUTHD - + @@ -9327,12 +9305,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9345,55 +9323,55 @@ prevents the message to be forwarded to your friends. Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9406,7 +9384,7 @@ prevents the message to be forwarded to your friends. No name - + @@ -9414,107 +9392,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - ID + Destination - + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - 人気度 + Details - 詳細 + Unknown Peer - + Pending data items - + Unknown - + Yes - はい + No - いいえ + @@ -9522,42 +9500,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9566,17 +9544,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9636,7 +9614,7 @@ prevents the message to be forwarded to your friends. Found Documents - + @@ -9651,7 +9629,7 @@ prevents the message to be forwarded to your friends. Backspace - + @@ -9666,7 +9644,7 @@ prevents the message to be forwarded to your friends. Shift+Backspace - + @@ -9681,7 +9659,7 @@ prevents the message to be forwarded to your friends. Ctrl+H - + @@ -9698,7 +9676,7 @@ prevents the message to be forwarded to your friends. Ctrl+F - + @@ -9708,12 +9686,12 @@ prevents the message to be forwarded to your friends. Close Vidalia Help - + Esc - + @@ -9744,7 +9722,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + @@ -9759,59 +9737,59 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9820,12 +9798,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9858,7 +9836,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - + @@ -9866,114 +9844,114 @@ p, li { white-space: pre-wrap; } Form - フォーム + フォーム Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - 名前を付けて保存 + RetroShare Certificate (*.rsc );;All Files (*) - + Home - ホーム + @@ -9982,32 +9960,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10017,206 +9995,206 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - 0 + 0 Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10225,12 +10203,12 @@ p, li { white-space: pre-wrap; } All - + Reputation - + @@ -10240,166 +10218,166 @@ p, li { white-space: pre-wrap; } Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - 閉じる + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + 0 Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10409,257 +10387,257 @@ 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - ID + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - パブリック + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10667,294 +10645,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - チャット + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10962,98 +10940,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11061,43 +11039,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11110,38 +11088,38 @@ These identities will soon be not supported anymore. N/A - + N/A Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11156,7 +11134,7 @@ These identities will soon be not supported anymore. TextLabel - + ラベル @@ -11165,7 +11143,7 @@ These identities will soon be not supported anymore. RM - + @@ -11176,32 +11154,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11214,12 +11192,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11231,25 +11209,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11258,13 +11236,13 @@ These identities will soon be not supported anymore. Message History - + Copy - + @@ -11274,17 +11252,17 @@ These identities will soon be not supported anymore. Mark all - + Delete - + Clear history - + @@ -11298,17 +11276,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11317,47 +11295,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11365,28 +11343,28 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + Options - + Messenger - + @@ -11396,7 +11374,7 @@ These identities will soon be not supported anymore. SMPlayer - + @@ -11408,22 +11386,22 @@ These identities will soon be not supported anymore. Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11432,12 +11410,12 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + @@ -11447,27 +11425,27 @@ These identities will soon be not supported anymore. Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + @@ -11477,17 +11455,17 @@ These identities will soon be not supported anymore. Minimize - + Maximize - + &Quit - + @@ -11497,42 +11475,42 @@ These identities will soon be not supported anymore. %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + @@ -11542,62 +11520,62 @@ These identities will soon be not supported anymore. Show - + Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11606,58 +11584,58 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + @@ -11677,17 +11655,17 @@ These identities will soon be not supported anymore. Alignment - + Add an Image - + Sets text font to code style - + @@ -11697,58 +11675,58 @@ These identities will soon be not supported anymore. Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + @@ -11758,17 +11736,17 @@ These identities will soon be not supported anymore. Send this message now - + Reply - + Toggle Contacts View - + @@ -11778,104 +11756,104 @@ These identities will soon be not supported anymore. Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + @@ -11885,51 +11863,51 @@ Do you want to save message to draft box? Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + @@ -11939,17 +11917,17 @@ Do you want to save message to draft box? On %1, %2 wrote: - + Re: - + Fwd: - + @@ -11961,133 +11939,133 @@ Do you want to save message to draft box? Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown - + &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - 詳細 + @@ -12098,7 +12076,7 @@ Do you want to save message to draft box? HTML-Files (*.htm *.html);;All Files (*) - + @@ -12108,28 +12086,28 @@ Do you want to save message to draft box? Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + @@ -12139,17 +12117,17 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12159,78 +12137,78 @@ Do you want to save message ? From: - + Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12238,47 +12216,47 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12288,47 +12266,47 @@ Do you want to save message ? Edit - + Delete - + Default - + A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12336,7 +12314,7 @@ Do you want to save message ? Sub: - + @@ -12344,7 +12322,7 @@ Do you want to save message ? Message - + @@ -12352,87 +12330,87 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + From: - + To: - + Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + 印刷 Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + @@ -12442,23 +12420,23 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + @@ -12468,22 +12446,22 @@ Do you want to save message ? HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12491,37 +12469,37 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + @@ -12531,23 +12509,23 @@ Do you want to save message ? Remove selected message - + Delete - + Print selected message - + Print - + 印刷 @@ -12559,63 +12537,63 @@ Do you want to save message ? Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12624,62 +12602,62 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + Delete - + Print selected message - + Print - + 印刷 @@ -12693,7 +12671,7 @@ Do you want to save message ? Tags - + @@ -12701,7 +12679,7 @@ Do you want to save message ? Inbox - + @@ -12709,18 +12687,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12728,80 +12706,80 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + @@ -12814,105 +12792,105 @@ Do you want to save message ? From - + Date - + 期日 Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + Search Date - + Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + @@ -12922,89 +12900,89 @@ Do you want to save message ? Open in a new window - + Open in a new tab - + Mark as read - + Mark as unread - + Add Star - + Edit - + Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -13013,37 +12991,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13051,17 +13029,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13069,17 +13047,17 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13089,7 +13067,7 @@ Do you want to save message ? Paste my certificate link - + @@ -13097,22 +13075,22 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + @@ -13133,32 +13111,32 @@ Do you want to save message ? from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + @@ -13168,12 +13146,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13181,52 +13159,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13234,12 +13212,12 @@ Do you want to save message ? Filter: - + Search Network - + @@ -13249,62 +13227,62 @@ Do you want to save message ? Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + @@ -13314,27 +13292,27 @@ Do you want to save message ? Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13342,59 +13320,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13402,7 +13380,7 @@ Reported error: Network - + @@ -13410,22 +13388,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13433,7 +13411,7 @@ Reported error: New Tag - + @@ -13443,7 +13421,7 @@ Reported error: Choose color - + @@ -13461,42 +13439,42 @@ Reported error: Log entries - + Options - + Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13509,100 +13487,100 @@ Reported error: Channels - + Forums - + Blogs - + Security - + Test - + Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + チャット New Message - + Download completed - + @@ -13617,52 +13595,52 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - 大文字・小文字を区別 + Position - + X Margin - + Y Margin - + Systray message - + @@ -13672,67 +13650,67 @@ Reported error: Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13740,83 +13718,83 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + Test - + This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13824,7 +13802,7 @@ Reported error: Friend Online - + @@ -13832,41 +13810,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13874,202 +13852,202 @@ Reported error: Dialog - + Profile info - + Name : - + 名前: 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: - + <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 - + No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14089,29 +14067,29 @@ p, li { white-space: pre-wrap; } The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + @@ -14131,22 +14109,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14161,22 +14139,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14189,7 +14167,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - + @@ -14223,12 +14201,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + @@ -14238,12 +14216,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP Address: - + Connection Method: - + @@ -14253,7 +14231,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14263,32 +14241,32 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14301,7 +14279,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + @@ -14311,7 +14289,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Send Message - + @@ -14319,17 +14297,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + 友達 @@ -14339,53 +14317,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14393,68 +14371,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14470,17 +14448,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + ラベル @@ -14490,27 +14468,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Summary - + Caption - + Where: - + 位置: Photo Title: - + When - + @@ -14520,12 +14498,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add Comment - + コメントを追加 Write a comment... - + @@ -14538,34 +14516,34 @@ Warning: In your File-Transfer option, you select allow direct download to No. TextLabel - + ラベル <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14578,53 +14556,53 @@ p, li { white-space: pre-wrap; } Create Album - + アルバムを作成 View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14632,33 +14610,33 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + @@ -14668,17 +14646,17 @@ requesting to edit it! Start - + Start Slide Show - + Stop Slide Show - + @@ -14694,26 +14672,26 @@ requesting to edit it! TextLabel - + ラベル Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14723,22 +14701,22 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + @@ -14748,22 +14726,22 @@ p, li { white-space: pre-wrap; } File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14771,37 +14749,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14809,22 +14787,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + 新しいプラグインをインストール... Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14832,27 +14810,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + <無効> No API number supplied. Please read plugin development manual. - + @@ -14861,37 +14839,37 @@ 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. - + Unknown status. - + @@ -14899,18 +14877,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14926,17 +14904,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14944,36 +14922,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14981,32 +14959,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15014,12 +14992,12 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + メモ @@ -15029,42 +15007,42 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + 投稿 Submit a new Post - + Please add a Title - + タイトルを追加してください Title - + タイトル Link - + リンク @@ -15072,42 +15050,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15115,32 +15093,32 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + @@ -15153,7 +15131,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15169,7 +15147,7 @@ malicious behavior of crafted plugins. Posted Description - + @@ -15179,7 +15157,7 @@ malicious behavior of crafted plugins. New Posted - + @@ -15192,19 +15170,19 @@ malicious behavior of crafted plugins. 0 - 0 + 0 Site - + Comments - + コメント @@ -15215,22 +15193,22 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + \/ - + Set as read and remove item - + @@ -15240,12 +15218,12 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + @@ -15265,7 +15243,7 @@ malicious behavior of crafted plugins. By - + @@ -15278,7 +15256,7 @@ malicious behavior of crafted plugins. Hot - + @@ -15288,42 +15266,42 @@ malicious behavior of crafted plugins. Top - + Today - + 今日 Yesterday - + 昨日 This Week - + 今週 This Month - + 今月 This Year - + 今年 Submit a new Post - + Next - + @@ -15333,17 +15311,17 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + Previous - + 1-10 - 1-10 + 1-10 @@ -15351,17 +15329,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15369,7 +15347,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15377,37 +15355,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + 印刷 &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15416,20 +15394,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15444,24 +15422,24 @@ p, li { white-space: pre-wrap; } GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15470,42 +15448,42 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + @@ -15520,17 +15498,17 @@ and use the import button to load it Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15539,22 +15517,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15569,52 +15547,52 @@ and use the import button to load it Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + @@ -15625,12 +15603,12 @@ and use the import button to load it Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15638,51 +15616,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + URL @@ -15692,7 +15670,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15700,12 +15678,12 @@ and use the import button to load it From - + Date - + 期日 @@ -15721,285 +15699,285 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + ファイルを追加しました Files added - + File exist - + Files exist - + Friend added - + 友人を追加しました Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + Forum not found - + Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + @@ -16010,86 +15988,86 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16097,306 +16075,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16404,19 +16382,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16425,7 +16403,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> - + @@ -16433,7 +16411,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16442,73 +16420,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16516,35 +16494,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16559,110 +16537,110 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16670,12 +16648,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16683,17 +16661,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16706,12 +16684,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16719,52 +16697,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16772,17 +16750,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16790,24 +16768,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - General - 一般 + @@ -16815,7 +16786,7 @@ p, li { white-space: pre-wrap; } Download... - + @@ -16825,12 +16796,12 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - + Collection - + @@ -16838,22 +16809,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16861,27 +16832,27 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + Unknown - + @@ -16889,33 +16860,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16923,32 +16894,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - + Merge - + Cancel - キャンセル + @@ -16956,27 +16927,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -16987,39 +16958,39 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17030,22 +17001,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17055,119 +17026,119 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + Overwrite - + Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17176,17 +17147,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17194,25 +17165,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Cancel - キャンセル + @@ -17221,119 +17188,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - 名前 + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - 状態 + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - + Failed - + Okay - OK + Waiting - + Downloading - + Complete - + Queued - + Paused - + Checking... - + Unknown - + @@ -17341,7 +17308,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17360,7 +17327,7 @@ If you believe it is correct, remove the corresponding line from the file and re filename - + @@ -17370,17 +17337,17 @@ If you believe it is correct, remove the corresponding line from the file and re level - + Sets the verbosity of RetroShare's logging. - + style - + @@ -17390,7 +17357,7 @@ If you believe it is correct, remove the corresponding line from the file and re stylesheet - + @@ -17400,17 +17367,13 @@ If you believe it is correct, remove the corresponding line from the file and re language - + Sets RetroShare's language. Retoroshare の言語を設定. - - RetroShare Usage Information - Retoroshare の使用方法 - Unable to open log file '%1': %2 @@ -17420,67 +17383,67 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17489,7 +17452,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17497,7 +17460,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17505,12 +17468,12 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + @@ -17520,83 +17483,83 @@ If you believe it is correct, remove the corresponding line from the file and re Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + @@ -17606,87 +17569,87 @@ If you believe it is correct, remove the corresponding line from the file and re Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + @@ -17702,7 +17665,7 @@ If you believe it is correct, remove the corresponding line from the file and re Send RetroShare Link - + @@ -17712,24 +17675,24 @@ If you believe it is correct, remove the corresponding line from the file and re Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + @@ -17739,48 +17702,48 @@ If you believe it is correct, remove the corresponding line from the file and re Remove All - + Folder - + New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17788,7 +17751,7 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + @@ -17804,12 +17767,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP address: - + Peer ID: - + @@ -17819,14 +17782,14 @@ If you believe it is correct, remove the corresponding line from the file and re Peer Name: - + Unknown Peer - + @@ -17836,33 +17799,33 @@ If you believe it is correct, remove the corresponding line from the file and re but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17870,22 +17833,22 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + @@ -17916,12 +17879,12 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + @@ -17931,12 +17894,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP Address: - + Connection Method: - + @@ -17951,27 +17914,27 @@ If you believe it is correct, remove the corresponding line from the file and re Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17980,7 +17943,7 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + @@ -17990,32 +17953,32 @@ If you believe it is correct, remove the corresponding line from the file and re Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18023,47 +17986,47 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -18074,7 +18037,7 @@ If you believe it is correct, remove the corresponding line from the file and re NAT - + @@ -18090,40 +18053,40 @@ If you believe it is correct, remove the corresponding line from the file and re Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18132,89 +18095,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18223,300 +18186,300 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - 受信 + <html><head/><body><p>Setup your hidden address (and port if needed)</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 - + @@ -18525,127 +18488,127 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - 一般 + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18659,13 +18622,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + @@ -18677,124 +18640,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -18807,82 +18770,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18890,27 +18853,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18918,7 +18881,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -18928,17 +18891,17 @@ If you have issues connecting over Tor check the Tor logs too. Permissions - + 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> - + @@ -18946,7 +18909,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - フォーム + フォーム @@ -18954,7 +18917,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18962,23 +18925,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18986,47 +18949,47 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - キャンセル + Add a Share Directory - + @@ -19036,98 +18999,98 @@ Select the Friends with which you want to Share your Channel. Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19140,12 +19103,12 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - + Start Search - + @@ -19155,42 +19118,42 @@ Select the Friends with which you want to Share your Channel. Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + @@ -19200,68 +19163,68 @@ Select the Friends with which you want to Share your Channel. Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19269,48 +19232,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - ダウンロード + Download complete - + Lobby - + @@ -19318,12 +19281,12 @@ Select the Friends with which you want to Share your Channel. Event: - + Filename: - + @@ -19333,27 +19296,27 @@ Select the Friends with which you want to Share your Channel. Event - + Filename - + Open File - + Sound - + Default - + @@ -19361,12 +19324,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19374,12 +19337,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19393,12 +19356,12 @@ Select the Friends with which you want to Share your Channel. Password - + Remember Password - + @@ -19410,38 +19373,38 @@ Select the Friends with which you want to Share your Channel. Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19450,7 +19413,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19459,7 +19422,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19468,7 +19431,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19476,27 +19439,27 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + Options - + Messenger - + @@ -19506,7 +19469,7 @@ This choice can be reverted in settings. SMPlayer - + @@ -19517,47 +19480,47 @@ This choice can be reverted in settings. Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19566,165 +19529,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19732,30 +19695,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19764,23 +19727,23 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + @@ -19790,17 +19753,17 @@ p, li { white-space: pre-wrap; } None - + Solid - + Gradient - + @@ -19818,7 +19781,7 @@ p, li { white-space: pre-wrap; } Download File - + @@ -19830,7 +19793,7 @@ p, li { white-space: pre-wrap; } Play File - + @@ -19840,28 +19803,28 @@ p, li { white-space: pre-wrap; } Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + @@ -19871,43 +19834,43 @@ p, li { white-space: pre-wrap; } LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + Open - + Open File - + @@ -19920,7 +19883,7 @@ p, li { white-space: pre-wrap; } Subscribed - + @@ -19938,7 +19901,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19946,27 +19909,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + 仕事 Personal - + Todo - + Later - + @@ -19974,12 +19937,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19987,12 +19950,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -20000,58 +19963,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20059,28 +20022,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20088,231 +20051,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - ブラウズ + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + ランダム MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - はい + No - いいえ + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - ファイル + @@ -20320,27 +20283,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20349,13 +20312,13 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + @@ -20367,12 +20330,12 @@ p, li { white-space: pre-wrap; } Size i.e: file size - + Completed - + @@ -20382,35 +20345,35 @@ p, li { white-space: pre-wrap; } Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + @@ -20422,38 +20385,38 @@ p, li { white-space: pre-wrap; } Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20464,27 +20427,27 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + @@ -20500,52 +20463,52 @@ p, li { white-space: pre-wrap; } Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + ランダム Progressive - + @@ -20555,62 +20518,58 @@ p, li { white-space: pre-wrap; } Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Okay - OK + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + @@ -20623,209 +20582,209 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - + Path - + Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - ファイル + @@ -20834,13 +20793,13 @@ p, li { white-space: pre-wrap; } My files - + FILE - + @@ -20852,83 +20811,83 @@ p, li { white-space: pre-wrap; } File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20937,13 +20896,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20952,32 +20911,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20985,12 +20944,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20998,42 +20957,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21041,47 +21000,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21101,22 +21060,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21124,22 +21083,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21210,57 +21169,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21268,58 +21227,58 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + カテゴリー Travel - + トラベル Holiday - + 旅行 Friends - + 友達 Family - + 家庭 Work - + 仕事 Random - + ランダム Description: - + 説明 Share Options - + 共有のオプション @@ -21329,62 +21288,62 @@ p, li { white-space: pre-wrap; } All Friends - + Restricted - + N/A - + N/A University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21393,57 +21352,57 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + Edit - + New Page - + Refresh - + @@ -21453,47 +21412,47 @@ p, li { white-space: pre-wrap; } My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21501,74 +21460,74 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + @@ -21579,7 +21538,7 @@ p, li { white-space: pre-wrap; } Preview - + @@ -21589,39 +21548,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + 投稿 Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21629,37 +21588,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21667,28 +21626,28 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + 今日 @@ -21698,67 +21657,67 @@ p, li { white-space: pre-wrap; } from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + 友達 Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21767,12 +21726,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21781,107 +21740,107 @@ p, li { white-space: pre-wrap; } Unknown Unknown (size) - + B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + Unknown - + < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21889,133 +21848,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - はい + No - いいえ + Last hour - + Today - + Never - + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_ko.qm b/retroshare-gui/src/lang/retroshare_ko.qm index 55d0c05f8..bd82e6b5e 100644 Binary files a/retroshare-gui/src/lang/retroshare_ko.qm and b/retroshare-gui/src/lang/retroshare_ko.qm differ diff --git a/retroshare-gui/src/lang/retroshare_ko.ts b/retroshare-gui/src/lang/retroshare_ko.ts index 1979dc84b..cbdee4e48 100644 --- a/retroshare-gui/src/lang/retroshare_ko.ts +++ b/retroshare-gui/src/lang/retroshare_ko.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + @@ -28,7 +26,7 @@ About - 정보 + @@ -36,52 +34,52 @@ Form - 양식 + About - 정보 + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - 레트로 쉐어 정보 + Have fun ;-) - + Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file 죄송하지만 이 파일에 대한 시스템 기본 명령을 결정할 수 없습니다 @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -448,14 +446,14 @@ p, li { white-space: pre-wrap; } Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,18 +501,18 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -532,7 +530,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + @@ -617,47 +615,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + @@ -672,7 +670,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + @@ -687,17 +685,17 @@ p, li { white-space: pre-wrap; } Main page items: - + Buttons - + Item list - + @@ -717,32 +715,32 @@ 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + @@ -926,12 +924,12 @@ p, li { white-space: pre-wrap; } Average - + Total - + @@ -949,62 +947,62 @@ p, li { white-space: pre-wrap; } In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + @@ -1017,57 +1015,57 @@ p, li { white-space: pre-wrap; } Form - 양식 + Friend: - + Type: - 유형: + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1075,12 +1073,12 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + @@ -1090,12 +1088,12 @@ p, li { white-space: pre-wrap; } Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1103,7 +1101,7 @@ p, li { white-space: pre-wrap; } Name - 이름 + @@ -1113,52 +1111,48 @@ p, li { white-space: pre-wrap; } Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 주제: %1 - - Lobby management - 대기방 관리 - %1 changed his name to: %2 @@ -1167,120 +1161,120 @@ p, li { white-space: pre-wrap; } Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - 검색 + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1296,38 +1290,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1351,106 +1345,106 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - 레트로 쉐어 링크 복사 + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1466,7 +1460,7 @@ Double click a chat room to enter and chat. Selected lobby info - + @@ -1481,67 +1475,67 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + Yes - + No - + Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + @@ -1551,12 +1545,12 @@ Double click a chat room to enter and chat. Security: - + Peers: - + @@ -1571,31 +1565,31 @@ Double click a chat room to enter and chat. Default identity is anonymous - + No anonymous IDs - + Show - 표시 + column - + Chats - + @@ -1653,27 +1647,27 @@ Double click a chat room to enter and chat. Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + @@ -1683,7 +1677,7 @@ Double click a chat room to enter and chat. Enable Emoticons Private Chat - + @@ -1693,32 +1687,32 @@ Double click a chat room to enter and chat. Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + @@ -1728,27 +1722,27 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + @@ -1758,22 +1752,22 @@ Double click a chat room to enter and chat. Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + @@ -1806,14 +1800,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1830,42 +1824,42 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + @@ -1880,51 +1874,47 @@ Double click a chat room to enter and chat. UserName - + /me is sending a message with /me - - - - 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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1934,72 +1924,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -2017,22 +2007,22 @@ Double click a chat room to enter and chat. Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2081,7 +2071,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2091,7 +2081,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2147,48 +2137,48 @@ Double click a chat room to enter and chat. Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2199,18 +2189,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2240,16 +2230,12 @@ after HTML conversion. appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - 여러분이 보낸 메시지는 친구가 온라인일때 도착합니다 + @@ -2269,116 +2255,116 @@ after HTML conversion. Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2391,7 +2377,7 @@ Double click on it to add his name on text writer. Empty Circle - + @@ -2399,12 +2385,12 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + @@ -2421,17 +2407,17 @@ Double click on it to add his name on text writer. Personal Circles - + Public Circles - + Peers - + @@ -2452,78 +2438,78 @@ Double click on it to add his name on text writer. Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2533,10 +2519,6 @@ Double click on it to add his name on text writer. Details 세부 정보 - - Peer Address - 동료 주소 - @@ -2551,12 +2533,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2569,10 +2551,6 @@ Double click on it to add his name on text writer. Port 포트 - - Addresses list - 주소록 - Include signatures @@ -2595,67 +2573,67 @@ Double click on it to add his name on text writer. Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - 이름: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + @@ -2666,47 +2644,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2719,23 +2697,23 @@ Double click on it to add his name on text writer. Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2746,87 +2724,87 @@ Double click on it to add his name on text writer. Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + @@ -2836,7 +2814,7 @@ Double click on it to add his name on text writer. Use RetroShare ID for adding a Friend which is available in your network. - + @@ -2846,72 +2824,72 @@ Double click on it to add his name on text writer. Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + @@ -2923,20 +2901,20 @@ Double click on it to add his name on text writer. Friend request - + Details about the request - + Peer details - + @@ -2948,18 +2926,18 @@ Double click on it to add his name on text writer. 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. - + @@ -2976,81 +2954,81 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + @@ -3060,67 +3038,67 @@ resources. Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + @@ -3131,47 +3109,47 @@ resources. Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + @@ -3184,46 +3162,46 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3233,38 +3211,38 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + @@ -3274,17 +3252,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -3303,123 +3281,123 @@ Warning: In your File-Transfer option, you select allow direct download to No. Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3427,69 +3405,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3497,12 +3475,12 @@ even if you don't make friends. Connection Progress - + Connecting to: - + @@ -3512,226 +3490,226 @@ even if you don't make friends. Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3740,201 +3718,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3947,37 +3925,37 @@ p, li { white-space: pre-wrap; } UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3988,7 +3966,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -3998,12 +3976,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4018,28 +3996,28 @@ p, li { white-space: pre-wrap; } Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4054,47 +4032,47 @@ p, li { white-space: pre-wrap; } Name: - 이름: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - 개인용 + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4106,17 +4084,17 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4126,7 +4104,7 @@ p, li { white-space: pre-wrap; } Remove - + @@ -4142,70 +4120,70 @@ p, li { white-space: pre-wrap; } Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - 닫기 + Create New Circle - + Create - 만들기 + PGP Linked Id - + Add Member - + Remove Member - + @@ -4214,27 +4192,27 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + @@ -4245,7 +4223,7 @@ p, li { white-space: pre-wrap; } Edit Group - + @@ -4254,43 +4232,43 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + @@ -4301,22 +4279,22 @@ p, li { white-space: pre-wrap; } Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + @@ -4332,17 +4310,17 @@ p, li { white-space: pre-wrap; } Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -4358,7 +4336,7 @@ p, li { white-space: pre-wrap; } File already Added and Hashed - + @@ -4368,33 +4346,33 @@ p, li { white-space: pre-wrap; } Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4403,7 +4381,7 @@ p, li { white-space: pre-wrap; } Post Forum Message - + @@ -4418,47 +4396,47 @@ p, li { white-space: pre-wrap; } Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + @@ -4475,18 +4453,18 @@ p, li { white-space: pre-wrap; } Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4496,23 +4474,23 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + @@ -4522,12 +4500,12 @@ Do you want to discard this message? Post as - + Congrats, you found a bug! - + @@ -4535,87 +4513,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4623,7 +4601,7 @@ Do you want to discard this message? Public Information - + @@ -4638,22 +4616,22 @@ Do you want to discard this message? Location ID: - + Software Version: - + Online since: - + Other Information - + @@ -4668,7 +4646,7 @@ Do you want to discard this message? Save Key into a file - + @@ -4678,12 +4656,12 @@ Do you want to discard this message? Error - + Your certificate could not be parsed correctly. Please contact the developers. - + @@ -4693,7 +4671,7 @@ Do you want to discard this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -4713,47 +4691,47 @@ Do you want to discard this message? PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4761,7 +4739,7 @@ Do you want to discard this message? users - + @@ -4769,17 +4747,17 @@ Do you want to discard 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 - + @@ -4795,12 +4773,12 @@ Do you want to discard this message? DHT Good - + No peer found in DHT - + @@ -4808,42 +4786,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4861,22 +4839,22 @@ Do you want to discard this message? Done - + Active - + Outstanding - + Needs checking - + @@ -4896,7 +4874,7 @@ Do you want to discard this message? Rating - + @@ -4906,7 +4884,7 @@ Do you want to discard this message? File Name - + @@ -4914,27 +4892,27 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + @@ -4949,83 +4927,83 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + @@ -5045,202 +5023,202 @@ Do you want to discard this message? Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5250,27 +5228,27 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + @@ -5280,34 +5258,34 @@ Do you want to discard this message? RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5316,27 +5294,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5344,113 +5322,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5458,12 +5436,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5471,7 +5449,7 @@ Do you want to discard this message? Start file - + @@ -5481,36 +5459,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5518,12 +5496,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5531,52 +5509,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5584,47 +5562,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5632,52 +5610,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5685,38 +5663,38 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + @@ -5726,32 +5704,32 @@ Do you want to discard this message? Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5759,52 +5737,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5822,41 +5800,37 @@ Do you want to discard this message? Expand new messages - - - - Forum - 포럼 + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5870,69 +5844,69 @@ Do you want to discard this message? ID - ID + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + @@ -5943,219 +5917,219 @@ Do you want to discard this message? Copy certificate link - + Add to group - + Search - 검색 + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6163,42 +6137,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6206,7 +6180,7 @@ at least one peer was not added to a group Confirm Friend Request - + @@ -6216,7 +6190,7 @@ at least one peer was not added to a group Unknown (Incoming) Connect Attempt - + @@ -6224,17 +6198,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6244,17 +6218,17 @@ at least one peer was not added to a group Search Friends - + Mark all - + Mark none - + @@ -6262,13 +6236,13 @@ at least one peer was not added to a group Edit status message - + Broadcast - + @@ -6278,27 +6252,27 @@ at least one peer was not added to a group Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + @@ -6320,7 +6294,7 @@ at least one peer was not added to a group Add a new Group - + @@ -6336,12 +6310,12 @@ at least one peer was not added to a group Create new Chat lobby - + Choose Font - + @@ -6351,33 +6325,33 @@ at least one peer was not added to a group Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6385,7 +6359,7 @@ at least one peer was not added to a group Create new Profile - + @@ -6400,7 +6374,7 @@ at least one peer was not added to a group Passwords do not match - + @@ -6410,145 +6384,145 @@ at least one peer was not added to a group Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - 옵션 + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - 텍스트 레이블 + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6557,131 +6531,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6689,7 +6663,7 @@ and use the import button to load it Startup - + @@ -6699,22 +6673,22 @@ and use the import button to load it Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + @@ -6729,78 +6703,78 @@ and use the import button to load it Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + @@ -6820,7 +6794,7 @@ and use the import button to load it Minimize to Tray Icon - + @@ -6829,27 +6803,27 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + @@ -6859,14 +6833,14 @@ p, li { white-space: pre-wrap; } Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6878,31 +6852,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> @@ -6915,58 +6889,58 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + @@ -6991,12 +6965,12 @@ p, li { white-space: pre-wrap; } forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + @@ -7006,12 +6980,12 @@ p, li { white-space: pre-wrap; } and send them your ID Certificate to get securely connected. - + Cut Below Here - + @@ -7026,7 +7000,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + @@ -7034,82 +7008,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - ID + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - 알 수 없음 + @@ -7117,22 +7091,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7140,7 +7114,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7148,7 +7122,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7166,17 +7140,17 @@ p, li { white-space: pre-wrap; } Co-Workers - + Other Contacts - + Favorites - + @@ -7184,72 +7158,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7262,7 +7236,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7270,47 +7244,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7333,73 +7307,73 @@ p, li { white-space: pre-wrap; } Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - 최신 게시글 + Never - 안함 + Display - 표시 + Subscribe to download and read messages - + @@ -7407,17 +7381,17 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + @@ -7432,12 +7406,12 @@ p, li { white-space: pre-wrap; } Extension - + Hash - + @@ -7447,7 +7421,7 @@ p, li { white-space: pre-wrap; } Size - + @@ -7457,47 +7431,47 @@ p, li { white-space: pre-wrap; } contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7506,7 +7480,7 @@ p, li { white-space: pre-wrap; } Channels - + @@ -7521,12 +7495,12 @@ p, li { white-space: pre-wrap; } 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7546,7 +7520,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + @@ -7556,18 +7530,18 @@ p, li { white-space: pre-wrap; } Set download directory - + [Default directory] - + Specify... - + @@ -7590,37 +7564,37 @@ p, li { white-space: pre-wrap; } Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7633,12 +7607,12 @@ p, li { white-space: pre-wrap; } Filename - + Size - + @@ -7648,7 +7622,7 @@ p, li { white-space: pre-wrap; } Published - + @@ -7661,32 +7635,32 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + @@ -7738,17 +7712,17 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + @@ -7759,7 +7733,7 @@ p, li { white-space: pre-wrap; } Play - + @@ -7770,7 +7744,7 @@ p, li { white-space: pre-wrap; } Edit - 편집 + @@ -7806,12 +7780,12 @@ p, li { white-space: pre-wrap; } Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + @@ -7826,7 +7800,7 @@ p, li { white-space: pre-wrap; } 0 - 0 + @@ -7837,12 +7811,12 @@ p, li { white-space: pre-wrap; } I like this - + I dislike this - + @@ -7852,7 +7826,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -7862,7 +7836,7 @@ p, li { white-space: pre-wrap; } Open File - + @@ -7881,7 +7855,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -7891,7 +7865,7 @@ p, li { white-space: pre-wrap; } Search channels - + @@ -7906,22 +7880,22 @@ p, li { white-space: pre-wrap; } Message - + Search Message - + Filename - + Search Filename - + @@ -7931,32 +7905,32 @@ p, li { white-space: pre-wrap; } Never - 안함 + Public - 공용 + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -7971,33 +7945,33 @@ p, li { white-space: pre-wrap; } Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + @@ -8007,12 +7981,12 @@ p, li { white-space: pre-wrap; } Files - + Subscribers - + @@ -8022,7 +7996,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8030,7 +8004,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8038,48 +8012,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - 항목 제거 + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8087,7 +8061,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8100,7 +8074,7 @@ p, li { white-space: pre-wrap; } Hot - + @@ -8110,17 +8084,17 @@ p, li { white-space: pre-wrap; } Top - + Voter ID: - + Refresh - + @@ -8145,17 +8119,17 @@ p, li { white-space: pre-wrap; } UpVotes - + DownVotes - + OwnVote - + @@ -8163,27 +8137,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8191,32 +8165,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8224,7 +8198,7 @@ before you can comment Create New Forum - + @@ -8234,22 +8208,22 @@ before you can comment Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + @@ -8262,7 +8236,7 @@ before you can comment Subscribe to Forum - + @@ -8278,7 +8252,7 @@ before you can comment Forum Description - + @@ -8288,7 +8262,7 @@ before you can comment New Forum - + @@ -8307,7 +8281,7 @@ before you can comment Unsubscribe To Forum - + @@ -8328,7 +8302,7 @@ before you can comment In Reply to: - + @@ -8338,7 +8312,7 @@ before you can comment Forum Feed - + @@ -8356,7 +8330,7 @@ before you can comment Start new Thread for Selected Forum - + @@ -8371,17 +8345,17 @@ before you can comment New Thread - + Threaded View - + Flat View - + @@ -8405,7 +8379,7 @@ before you can comment Save image - + @@ -8416,27 +8390,27 @@ before you can comment Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + @@ -8456,17 +8430,17 @@ before you can comment Content - + Search Content - + <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> - + @@ -8478,22 +8452,22 @@ before you can comment Reply - + Start New Thread - + Expand all - + Collapse all - + @@ -8505,7 +8479,7 @@ before you can comment with children - + @@ -8531,64 +8505,64 @@ before you can comment [Banned] - + [unknown] - + Public - 공용 + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + @@ -8598,27 +8572,27 @@ before you can comment [ ... Missing 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> - + @@ -8636,7 +8610,7 @@ before you can comment No Forum Selected! - + @@ -8644,144 +8618,144 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - 편집 + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - 안함 + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8791,7 +8765,7 @@ prevents the message to be forwarded to your friends. Sent - + @@ -8801,22 +8775,22 @@ prevents the message to be forwarded to your friends. On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + @@ -8826,7 +8800,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8834,7 +8808,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8842,38 +8816,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8881,12 +8855,12 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + @@ -8905,27 +8879,27 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + @@ -8936,7 +8910,7 @@ prevents the message to be forwarded to your friends. Message Distribution - + @@ -8949,7 +8923,7 @@ prevents the message to be forwarded to your friends. Publish Signatures - + @@ -8959,37 +8933,37 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + @@ -8999,88 +8973,88 @@ prevents the message to be forwarded to your friends. Allow Comments - + No Comments - + Spam-protection - + Comments: - 설명: + TextLabel - 텍스트 레이블 + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - 안함 + Only friends nodes in group - + @@ -9090,38 +9064,38 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + @@ -9141,52 +9115,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9196,7 +9170,7 @@ prevents the message to be forwarded to your friends. Posts - + @@ -9206,7 +9180,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9219,17 +9193,17 @@ prevents the message to be forwarded to your friends. Todo - + Print - + PrintPreview - + @@ -9249,69 +9223,69 @@ prevents the message to be forwarded to your friends. Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9326,12 +9300,12 @@ prevents the message to be forwarded to your friends. Mark all as unread - + AUTHD - + @@ -9339,12 +9313,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9357,55 +9331,55 @@ prevents the message to be forwarded to your friends. Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9426,107 +9400,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - ID + Destination - 목표 + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - 인기도 + Details - + Unknown Peer - + Pending data items - + Unknown - 알 수 없음 + Yes - + No - + @@ -9534,42 +9508,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9578,17 +9552,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9602,17 +9576,17 @@ prevents the message to be forwarded to your friends. Find: - + Find Previous - + Find Next - + @@ -9622,17 +9596,17 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + @@ -9643,12 +9617,12 @@ prevents the message to be forwarded to your friends. Searching for: - + Found Documents - + @@ -9658,59 +9632,59 @@ prevents the message to be forwarded to your friends. Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + @@ -9720,43 +9694,43 @@ prevents the message to be forwarded to your friends. Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9771,59 +9745,59 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9832,12 +9806,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9845,7 +9819,7 @@ p, li { white-space: pre-wrap; } Opening External Link - + @@ -9860,7 +9834,7 @@ p, li { white-space: pre-wrap; } Unable to Open Link - + @@ -9870,7 +9844,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - + @@ -9878,114 +9852,114 @@ p, li { white-space: pre-wrap; } Form - 양식 + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - 레트로 쉐어 초대 + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - 다른 이름으로 저장... + RetroShare Certificate (*.rsc );;All Files (*) - 레트로 쉐어 인증 (*.rsc );;모든 파일 (*) + Home - + @@ -9994,32 +9968,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10029,206 +10003,206 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10242,7 +10216,7 @@ p, li { white-space: pre-wrap; } Reputation - + @@ -10252,166 +10226,166 @@ p, li { white-space: pre-wrap; } Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - 닫기 + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10421,257 +10395,257 @@ 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - ID + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - 공용 + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10679,294 +10653,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - 대화 + Unknown - 알 수 없음 + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10974,98 +10948,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11073,43 +11047,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11128,32 +11102,32 @@ These identities will soon be not supported anymore. Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11177,7 +11151,7 @@ These identities will soon be not supported anymore. RM - + @@ -11188,32 +11162,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11226,12 +11200,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11243,25 +11217,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11270,7 +11244,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11286,7 +11260,7 @@ These identities will soon be not supported anymore. Mark all - + @@ -11296,7 +11270,7 @@ These identities will soon be not supported anymore. Clear history - + @@ -11310,17 +11284,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11329,47 +11303,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11377,17 +11351,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11398,7 +11372,7 @@ These identities will soon be not supported anymore. Messenger - + @@ -11408,34 +11382,34 @@ These identities will soon be not supported anymore. SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11453,7 +11427,7 @@ These identities will soon be not supported anymore. Show/Hide - + @@ -11463,27 +11437,27 @@ These identities will soon be not supported anymore. Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + @@ -11493,17 +11467,17 @@ These identities will soon be not supported anymore. Minimize - + Maximize - + &Quit - + @@ -11513,32 +11487,32 @@ These identities will soon be not supported anymore. %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + @@ -11548,7 +11522,7 @@ These identities will soon be not supported anymore. Internal Error - + @@ -11563,12 +11537,12 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + @@ -11578,42 +11552,42 @@ These identities will soon be not supported anymore. The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11622,58 +11596,58 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + @@ -11693,17 +11667,17 @@ These identities will soon be not supported anymore. Alignment - + Add an Image - + Sets text font to code style - + @@ -11718,53 +11692,53 @@ These identities will soon be not supported anymore. Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + @@ -11774,17 +11748,17 @@ These identities will soon be not supported anymore. Send this message now - + Reply - + Toggle Contacts View - + @@ -11794,82 +11768,82 @@ These identities will soon be not supported anymore. Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + @@ -11879,19 +11853,19 @@ These identities will soon be not supported anymore. 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + @@ -11901,27 +11875,27 @@ Do you want to save message to draft box? Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + @@ -11933,19 +11907,19 @@ Do you want to save message to draft box? To - + Cc - + Sent - + @@ -11955,17 +11929,17 @@ Do you want to save message to draft box? On %1, %2 wrote: - + Re: - + Fwd: - + @@ -11982,13 +11956,13 @@ Do you want to save message to draft box? Please insert at least one recipient. - + Bcc - + @@ -11998,123 +11972,123 @@ Do you want to save message to draft box? &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + @@ -12124,28 +12098,28 @@ Do you want to save message to draft box? Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + @@ -12155,17 +12129,17 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12180,73 +12154,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12254,27 +12228,27 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + @@ -12284,17 +12258,17 @@ Do you want to save message ? Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12319,32 +12293,32 @@ Do you want to save message ? A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12352,7 +12326,7 @@ Do you want to save message ? Sub: - + @@ -12360,7 +12334,7 @@ Do you want to save message ? Message - + @@ -12368,12 +12342,12 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + @@ -12393,57 +12367,57 @@ Do you want to save message ? Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + @@ -12458,23 +12432,23 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + @@ -12484,22 +12458,22 @@ Do you want to save message ? HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12507,47 +12481,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + @@ -12557,13 +12531,13 @@ Do you want to save message ? Print selected message - + Print - + @@ -12575,63 +12549,63 @@ Do you want to save message ? Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12640,47 +12614,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + @@ -12690,12 +12664,12 @@ Do you want to save message ? Print selected message - + Print - + @@ -12709,7 +12683,7 @@ Do you want to save message ? Tags - + @@ -12717,7 +12691,7 @@ Do you want to save message ? Inbox - + @@ -12725,18 +12699,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12744,80 +12718,80 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + @@ -12842,12 +12816,12 @@ Do you want to save message ? Content - + Click to sort by attachments - + @@ -12857,33 +12831,33 @@ Do you want to save message ? Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + @@ -12893,7 +12867,7 @@ Do you want to save message ? Search From - + @@ -12903,32 +12877,32 @@ Do you want to save message ? Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + @@ -12938,12 +12912,12 @@ Do you want to save message ? Open in a new window - + Open in a new tab - + @@ -12958,7 +12932,7 @@ Do you want to save message ? Add Star - + @@ -12968,59 +12942,59 @@ Do you want to save message ? Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -13029,37 +13003,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13072,12 +13046,12 @@ Do you want to save message ? Add a Friend - + Share files for your friends - + @@ -13085,17 +13059,17 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13105,7 +13079,7 @@ Do you want to save message ? Paste my certificate link - + @@ -13113,22 +13087,22 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + @@ -13149,32 +13123,32 @@ Do you want to save message ? from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + @@ -13184,12 +13158,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13197,42 +13171,42 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + @@ -13242,7 +13216,7 @@ Do you want to save message ? Forwarded Port - + @@ -13250,12 +13224,12 @@ Do you want to save message ? Filter: - + Search Network - + @@ -13265,62 +13239,62 @@ Do you want to save message ? Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + @@ -13330,27 +13304,27 @@ Do you want to save message ? Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13358,7 +13332,7 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + @@ -13368,53 +13342,49 @@ For security, your keyring was previously backed-up to file Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - - Never - 안함 + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13422,7 +13392,7 @@ Reported error: Network - + @@ -13430,22 +13400,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13453,7 +13423,7 @@ Reported error: New Tag - + @@ -13463,7 +13433,7 @@ Reported error: Choose color - + @@ -13481,7 +13451,7 @@ Reported error: Log entries - + @@ -13491,32 +13461,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13529,22 +13499,22 @@ Reported error: Channels - + Forums - + Blogs - + Security - + @@ -13555,74 +13525,74 @@ Reported error: Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + @@ -13637,52 +13607,52 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - 대소문자 구분 + Position - + X Margin - + Y Margin - + Systray message - + @@ -13692,52 +13662,52 @@ Reported error: Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + @@ -13747,12 +13717,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13760,57 +13730,57 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + @@ -13820,23 +13790,23 @@ Reported error: This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13844,7 +13814,7 @@ Reported error: Friend Online - + @@ -13852,41 +13822,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13894,42 +13864,42 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + @@ -13939,101 +13909,101 @@ Reported error: No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14043,53 +14013,53 @@ p, li { white-space: pre-wrap; } Options - 옵션 + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14109,64 +14079,64 @@ p, li { white-space: pre-wrap; } The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14181,22 +14151,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14243,12 +14213,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + @@ -14258,12 +14228,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP Address: - + Connection Method: - + @@ -14273,7 +14243,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14283,32 +14253,32 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14321,7 +14291,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + @@ -14331,7 +14301,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Send Message - + @@ -14339,12 +14309,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + @@ -14359,53 +14329,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14413,68 +14383,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14490,12 +14460,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + @@ -14525,7 +14495,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Photo Title: - + @@ -14545,7 +14515,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Write a comment... - + @@ -14565,27 +14535,27 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14603,48 +14573,48 @@ p, li { white-space: pre-wrap; } View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14652,33 +14622,33 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + @@ -14688,17 +14658,17 @@ requesting to edit it! Start - + Start Slide Show - + Stop Slide Show - + @@ -14719,21 +14689,21 @@ requesting to edit it! Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14743,22 +14713,22 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + @@ -14768,17 +14738,17 @@ p, li { white-space: pre-wrap; } File name: - + File hash: - + Status: - + @@ -14791,37 +14761,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14829,22 +14799,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14852,27 +14822,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14881,37 +14851,37 @@ 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. - + Unknown status. - + @@ -14919,18 +14889,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14946,17 +14916,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14964,36 +14934,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -15001,32 +14971,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15034,12 +15004,12 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + @@ -15049,32 +15019,32 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + @@ -15084,7 +15054,7 @@ malicious behavior of crafted plugins. Link - + @@ -15092,42 +15062,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15135,32 +15105,32 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + @@ -15173,7 +15143,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15189,7 +15159,7 @@ malicious behavior of crafted plugins. Posted Description - + @@ -15199,7 +15169,7 @@ malicious behavior of crafted plugins. New Posted - + @@ -15212,12 +15182,12 @@ malicious behavior of crafted plugins. 0 - 0 + Site - + @@ -15235,17 +15205,17 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + \/ - + @@ -15260,17 +15230,17 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + Toggle Message Read Status - + @@ -15285,7 +15255,7 @@ malicious behavior of crafted plugins. By - + @@ -15298,7 +15268,7 @@ malicious behavior of crafted plugins. Hot - + @@ -15308,37 +15278,37 @@ malicious behavior of crafted plugins. Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + @@ -15353,7 +15323,7 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + @@ -15363,7 +15333,7 @@ malicious behavior of crafted plugins. 1-10 - 1-10 + @@ -15371,17 +15341,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15389,7 +15359,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15402,32 +15372,32 @@ malicious behavior of crafted plugins. Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15436,20 +15406,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15464,13 +15434,13 @@ p, li { white-space: pre-wrap; } GID - + Export Identity - + @@ -15481,7 +15451,7 @@ p, li { white-space: pre-wrap; } Identity saved - + @@ -15490,42 +15460,42 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + @@ -15540,17 +15510,17 @@ and use the import button to load it Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15559,22 +15529,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15589,52 +15559,52 @@ and use the import button to load it Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + @@ -15645,12 +15615,12 @@ and use the import button to load it Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15658,51 +15628,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15712,7 +15682,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15741,119 +15711,119 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + @@ -15863,163 +15833,163 @@ and open the Make Friend Wizard. Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + @@ -16030,12 +16000,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + @@ -16045,42 +16015,42 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + @@ -16096,22 +16066,22 @@ The error reported is:" An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16119,306 +16089,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - 제목: + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - 알 수 없음 + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16426,19 +16396,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16447,7 +16417,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> - + @@ -16455,7 +16425,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16464,73 +16434,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16538,35 +16508,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16581,12 +16551,12 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - + RetroShare Page Display Style - + @@ -16596,45 +16566,45 @@ p, li { white-space: pre-wrap; } 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + @@ -16644,47 +16614,47 @@ p, li { white-space: pre-wrap; } Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16692,12 +16662,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16705,17 +16675,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16728,12 +16698,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16741,52 +16711,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16794,17 +16764,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16812,28 +16782,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Friends - 친구 - - - General - 일반 + @@ -16841,7 +16800,7 @@ p, li { white-space: pre-wrap; } Download... - + @@ -16851,12 +16810,12 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - + Collection - + @@ -16864,22 +16823,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16887,22 +16846,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -16915,33 +16874,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16949,32 +16908,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - 덮어쓰기 + Merge - + Cancel - 취소 + @@ -16982,27 +16941,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -17013,39 +16972,39 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17056,22 +17015,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17081,69 +17040,69 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17153,47 +17112,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17202,17 +17161,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17220,29 +17179,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Overwrite - 덮어쓰기 - - - Cancel - 취소 + @@ -17251,119 +17202,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - 이름 + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - 상태 + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - 경로 + Failed - + Okay - 확인 + Waiting - + Downloading - 다운로드중 + Complete - + Queued - + Paused - + Checking... - + Unknown - 알 수 없음 + @@ -17371,7 +17322,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17390,7 +17341,7 @@ If you believe it is correct, remove the corresponding line from the file and re filename - + @@ -17400,7 +17351,7 @@ If you believe it is correct, remove the corresponding line from the file and re level - + @@ -17410,7 +17361,7 @@ If you believe it is correct, remove the corresponding line from the file and re style - + @@ -17420,7 +17371,7 @@ If you believe it is correct, remove the corresponding line from the file and re stylesheet - + @@ -17430,87 +17381,83 @@ If you believe it is correct, remove the corresponding line from the file and re language - + Sets RetroShare's language. 레트로 쉐어 언어를 설정합니다. - - RetroShare Usage Information - 레트로 쉐어 사용 정보 - Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17519,7 +17466,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17527,7 +17474,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17535,12 +17482,12 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + @@ -17550,83 +17497,83 @@ If you believe it is correct, remove the corresponding line from the file and re Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + @@ -17636,87 +17583,87 @@ If you believe it is correct, remove the corresponding line from the file and re Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + @@ -17742,24 +17689,24 @@ If you believe it is correct, remove the corresponding line from the file and re Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + @@ -17769,7 +17716,7 @@ If you believe it is correct, remove the corresponding line from the file and re Remove All - + @@ -17785,32 +17732,32 @@ If you believe it is correct, remove the corresponding line from the file and re Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17818,7 +17765,7 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + @@ -17834,12 +17781,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP address: - + Peer ID: - + @@ -17849,14 +17796,14 @@ If you believe it is correct, remove the corresponding line from the file and re Peer Name: - + Unknown Peer - + @@ -17866,33 +17813,33 @@ If you believe it is correct, remove the corresponding line from the file and re but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17905,17 +17852,17 @@ If you believe it is correct, remove the corresponding line from the file and re Accept Friend Request - + Peer details - + Deny friend - + @@ -17946,12 +17893,12 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + @@ -17961,12 +17908,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP Address: - + Connection Method: - + @@ -17981,27 +17928,27 @@ If you believe it is correct, remove the corresponding line from the file and re Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -18010,7 +17957,7 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + @@ -18020,32 +17967,32 @@ If you believe it is correct, remove the corresponding line from the file and re Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18053,47 +18000,47 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -18104,7 +18051,7 @@ If you believe it is correct, remove the corresponding line from the file and re NAT - + @@ -18120,35 +18067,35 @@ If you believe it is correct, remove the corresponding line from the file and re Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + @@ -18162,89 +18109,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18253,295 +18200,295 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18555,127 +18502,127 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - 친구 + Friends of Friends - + General - 일반 + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18689,13 +18636,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + @@ -18707,124 +18654,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -18837,82 +18784,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18920,27 +18867,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18948,7 +18895,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -18958,17 +18905,17 @@ If you have issues connecting over Tor check the Tor logs too. Permissions - + 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> - + @@ -18976,7 +18923,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - 양식 + @@ -18984,7 +18931,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18992,23 +18939,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -19021,42 +18968,42 @@ Select the Friends with which you want to Share your Channel. Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - 취소 + Add a Share Directory - + @@ -19066,98 +19013,98 @@ Select the Friends with which you want to Share your Channel. Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19165,17 +19112,17 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + @@ -19185,12 +19132,12 @@ Select the Friends with which you want to Share your Channel. Tree view - + Flat view - + @@ -19200,27 +19147,27 @@ Select the Friends with which you want to Share your Channel. One day old - + One Week old - + One month old - + check files - + Download selected - + @@ -19242,14 +19189,10 @@ Select the Friends with which you want to Share your Channel. Send retroshare Links 레트로 쉐어 링크 보내기 - - Send retroshare Links to Cloud - 레트로 쉐어 링크를 클라우드에 보내기 - Some files have been omitted - + @@ -19260,42 +19203,42 @@ Select the Friends with which you want to Share your Channel. Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19303,48 +19246,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - 다운로드 + Download complete - + Lobby - + @@ -19352,7 +19295,7 @@ Select the Friends with which you want to Share your Channel. Event: - + @@ -19362,32 +19305,32 @@ Select the Friends with which you want to Share your Channel. Browse - + Event - + Filename - + Open File - + Sound - + Default - 기본값 + @@ -19395,12 +19338,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19408,12 +19351,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19427,12 +19370,12 @@ Select the Friends with which you want to Share your Channel. Password - 암호 + Remember Password - + @@ -19444,38 +19387,38 @@ Select the Friends with which you want to Share your Channel. Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19484,7 +19427,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19493,7 +19436,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19502,7 +19445,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19510,17 +19453,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19530,7 +19473,7 @@ This choice can be reverted in settings. Messenger - + @@ -19540,58 +19483,58 @@ This choice can be reverted in settings. SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19600,165 +19543,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19766,30 +19709,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19798,23 +19741,23 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + @@ -19829,12 +19772,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19852,7 +19795,7 @@ p, li { white-space: pre-wrap; } Download File - + @@ -19864,38 +19807,38 @@ p, li { white-space: pre-wrap; } Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + @@ -19905,33 +19848,33 @@ p, li { white-space: pre-wrap; } LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19941,7 +19884,7 @@ p, li { white-space: pre-wrap; } Open File - + @@ -19954,7 +19897,7 @@ p, li { white-space: pre-wrap; } Subscribed - + @@ -19972,7 +19915,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19980,7 +19923,7 @@ p, li { white-space: pre-wrap; } Important - + @@ -19990,17 +19933,17 @@ p, li { white-space: pre-wrap; } Personal - + Todo - + Later - + @@ -20008,12 +19951,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -20021,12 +19964,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -20034,58 +19977,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - 알 수 없음 + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20093,28 +20036,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20122,138 +20065,138 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + @@ -20263,90 +20206,90 @@ p, li { white-space: pre-wrap; } MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20354,27 +20297,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20383,13 +20326,13 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + @@ -20401,12 +20344,12 @@ p, li { white-space: pre-wrap; } Size i.e: file size - + Completed - + @@ -20416,35 +20359,35 @@ p, li { white-space: pre-wrap; } Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + @@ -20456,38 +20399,38 @@ p, li { white-space: pre-wrap; } Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20498,27 +20441,27 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + @@ -20534,42 +20477,42 @@ p, li { white-space: pre-wrap; } Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + @@ -20579,80 +20522,68 @@ p, li { white-space: pre-wrap; } Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Okay - 확인 - - - Downloading - 다운로드중 - - - Unknown - 알 수 없음 + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + @@ -20665,159 +20596,154 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - - - - Path - i.e: Where file is saved - 경로 + @@ -20827,52 +20753,52 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20881,101 +20807,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20984,13 +20910,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20999,32 +20925,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -21032,12 +20958,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -21045,42 +20971,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21088,47 +21014,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21148,22 +21074,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21171,22 +21097,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21204,12 +21130,12 @@ p, li { white-space: pre-wrap; } Yes - + No - + @@ -21219,12 +21145,12 @@ p, li { white-space: pre-wrap; } Retry - + Show Log - + @@ -21239,12 +21165,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21257,57 +21183,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21315,12 +21241,12 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + @@ -21376,7 +21302,7 @@ p, li { white-space: pre-wrap; } All Friends - + @@ -21391,17 +21317,17 @@ p, li { white-space: pre-wrap; } University Friends - + This List Contains - + All your Groups - + @@ -21421,17 +21347,17 @@ p, li { white-space: pre-wrap; } Publish with XXX Key - + Cancel - + Create Group - + @@ -21440,42 +21366,42 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + @@ -21485,12 +21411,12 @@ p, li { white-space: pre-wrap; } New Page - + Refresh - + @@ -21500,47 +21426,47 @@ p, li { white-space: pre-wrap; } My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21548,74 +21474,74 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + @@ -21636,39 +21562,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21676,37 +21602,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21714,7 +21640,7 @@ p, li { white-space: pre-wrap; } TimeRange - + @@ -21725,17 +21651,17 @@ p, li { white-space: pre-wrap; } Last Month - + Last Week - + Today - + @@ -21745,37 +21671,37 @@ p, li { white-space: pre-wrap; } from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + @@ -21785,27 +21711,27 @@ p, li { white-space: pre-wrap; } Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21814,12 +21740,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21834,32 +21760,32 @@ p, li { white-space: pre-wrap; } B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + @@ -21870,65 +21796,65 @@ p, li { white-space: pre-wrap; } < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21936,133 +21862,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - + No - + Last hour - + Today - + Never - 안함 + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_nl.qm b/retroshare-gui/src/lang/retroshare_nl.qm index f4a1aa458..13eae8a6d 100644 Binary files a/retroshare-gui/src/lang/retroshare_nl.qm and b/retroshare-gui/src/lang/retroshare_nl.qm differ diff --git a/retroshare-gui/src/lang/retroshare_nl.ts b/retroshare-gui/src/lang/retroshare_nl.ts index 66468ac76..8cf2dd432 100644 --- a/retroshare-gui/src/lang/retroshare_nl.ts +++ b/retroshare-gui/src/lang/retroshare_nl.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + Retroshare versie @@ -28,7 +26,7 @@ About - Over + Over @@ -36,52 +34,52 @@ Form - Formulier + Formulier About - Over + Over Copy Info - + close - + sluiten Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - Over RetroShare + Over Retroshare Have fun ;-) - + Veel plezier ;-) Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Sorry, ik kan het standaard systeem commando niet definiëren. @@ -332,7 +330,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -454,7 +452,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -502,7 +500,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -515,7 +513,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -539,7 +537,7 @@ p, li { white-space: pre-wrap; }⏎ (Needs restart) - + @@ -624,47 +622,47 @@ p, li { white-space: pre-wrap; }⏎ Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + @@ -679,7 +677,7 @@ p, li { white-space: pre-wrap; }⏎ Show Operating Mode Status - + @@ -689,22 +687,22 @@ p, li { white-space: pre-wrap; }⏎ Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + @@ -934,12 +932,12 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Average - Gemiddelde + Total - + @@ -1060,22 +1058,22 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Legend: - + Current - + Total - + Log scale - + @@ -1108,14 +1106,10 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update ChatLobbyDialog - - Participants - Deelnemers - Name - Naam + @@ -1130,7 +1124,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Ban this person (Sets negative opinion) - + @@ -1140,12 +1134,12 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Sort by Name - Sorteer op naam + Sort by Activity - + @@ -1167,10 +1161,6 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Topic: %1 Onderwerp: %1 - - Lobby management - Portaal management - %1 changed his name to: %2 @@ -1199,38 +1189,38 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + @@ -1270,29 +1260,29 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1308,7 +1298,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Chats - + @@ -1363,106 +1353,106 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - Kopieer RetroShare Link + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1493,7 +1483,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + @@ -1538,17 +1528,17 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + @@ -1583,31 +1573,31 @@ Double click a chat room to enter and chat. Default identity is anonymous - + No anonymous IDs - + Show - Toon + column - + Chats - + @@ -1665,27 +1655,27 @@ Double click a chat room to enter and chat. Distant Chat - + Everyone - + Contacts - Contacten + Nobody - + Accept encrypted distant chat from - + @@ -1715,7 +1705,7 @@ Double click a chat room to enter and chat. Minimum font size - + @@ -1740,12 +1730,12 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - Ingesloten afbeeldingen laden + @@ -1760,7 +1750,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + @@ -1818,14 +1808,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1842,7 +1832,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1892,16 +1882,12 @@ Double click a chat room to enter and chat. UserName - + /me is sending a message with /me - - - - Chat - Chat + @@ -1981,37 +1967,37 @@ Double click a chat room to enter and chat. Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -2093,7 +2079,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2103,7 +2089,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2159,48 +2145,48 @@ Double click a chat room to enter and chat. Quote - Citaat + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2211,18 +2197,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2257,11 +2243,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Verstuurde berichten worden pas bezorgd als je vriend weer online is + @@ -2349,18 +2331,18 @@ after HTML conversion. Person id: - + Double click on it to add his name on text writer. - + Unsigned - + @@ -2385,12 +2367,12 @@ Double click on it to add his name on text writer. Don't stop to color after - + items found (need more CPU) - + @@ -2545,10 +2527,6 @@ Double click on it to add his name on text writer. Details Gegevens - - Peer Address - Verbindings adres - @@ -2563,12 +2541,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2581,10 +2559,6 @@ Double click on it to add his name on text writer. Port Poort - - Addresses list - Adres lijst - Include signatures @@ -2614,19 +2588,15 @@ Double click on it to add his name on text writer. Not connected Niet verbonden - - Peer Addresses - Verbindings adres - Retroshare node details - + Node name : - + @@ -2636,42 +2606,42 @@ Double click on it to add his name on text writer. Last Contact : - + Retroshare version : - + Node ID : - + Name: - Naam: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + @@ -2682,47 +2652,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2751,7 +2721,7 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2777,17 +2747,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + @@ -2872,12 +2842,12 @@ Double click on it to add his name on text writer. RetroShare is better with Friends - + Invite your Friends from other Networks to RetroShare. - + @@ -2907,7 +2877,7 @@ Double click on it to add his name on text writer. Email - Email + @@ -2975,7 +2945,7 @@ Double click on it to add his name on text writer. 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. - + @@ -2992,7 +2962,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: - + @@ -3002,37 +2972,37 @@ resources. Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + @@ -3091,7 +3061,7 @@ resources. <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> - + @@ -3182,12 +3152,12 @@ resources. Certificate appears to be valid - + Not a valid Retroshare certificate! - + @@ -3200,31 +3170,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + @@ -3365,27 +3335,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + @@ -3400,7 +3370,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + @@ -3464,13 +3434,13 @@ even if you don't make friends. Can be used as direct source - + Require whitelist clearance to connect - + @@ -3485,7 +3455,7 @@ even if you don't make friends. <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> - + @@ -3505,7 +3475,7 @@ even if you don't make friends. Certificate Load Failed:something is wrong with %1 - + @@ -3582,13 +3552,13 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3952,20 +3922,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Probeer opnieuw de volledige certificaat te importeren - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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 OPENBARE "-//W3C//DTD HTML 4.0 / / NL" "http://www.w3.org/TR/REC-html40/strict.dtd" > <html><head><meta name="qrichtext" content="1" /> <style type="text/css"> p, li {witruimte: vooraf laten teruglopen;}</style></head><body style="font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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;"> Deze Widget toont de voortgang van uw verbinding naar uw nieuwe 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;"> het is nuttig voor probleemoplossing.</span></p> -<p style="-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;"> Als u een ervaren gebruiker van RS, of vertrouwen dat RS het juiste ding doen zal</span></p> <p 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;"> u kunt sluiten it.</span></p></body></html> - @@ -4007,7 +3963,7 @@ p, li { white-space: pre-wrap; } They need a Certificate + Node for UDP connections to succeed - + @@ -4028,12 +3984,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4059,17 +4015,17 @@ p, li { white-space: pre-wrap; } Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4084,47 +4040,47 @@ p, li { white-space: pre-wrap; } Name: - Naam: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Prive + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4199,28 +4155,28 @@ p, li { white-space: pre-wrap; } Circle name - + Update - + Close - Sluiten + Create New Circle - + Create - Maak + @@ -4230,12 +4186,12 @@ p, li { white-space: pre-wrap; } Add Member - + Remove Member - + @@ -4249,12 +4205,12 @@ p, li { white-space: pre-wrap; } Group Name: - Groeps Naam: + Group ID: - + @@ -4264,7 +4220,7 @@ p, li { white-space: pre-wrap; } To be defined - + @@ -4301,9 +4257,9 @@ 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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -4425,7 +4381,7 @@ p, li { white-space: pre-wrap; }⏎ Edit Channel Post - + @@ -4484,7 +4440,7 @@ p, li { white-space: pre-wrap; }⏎ Edit Message - + @@ -4516,13 +4472,13 @@ p, li { white-space: pre-wrap; }⏎ Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4532,12 +4488,12 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + @@ -4555,20 +4511,10 @@ Do you want to discard this message? Send Verstuur - - Forum Message - Forum bericht - - - Forum Message has not been Sent. -Do you want to reject this message? - Forum bericht is niet verstuurd. -Wilt u dit bericht negeren? - Post as - + @@ -4616,7 +4562,7 @@ Wilt u dit bericht negeren? <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> - + @@ -4641,17 +4587,17 @@ Wilt u dit bericht negeren? Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + @@ -4661,7 +4607,7 @@ Wilt u dit bericht negeren? Identity to use: - + @@ -4820,7 +4766,7 @@ Wilt u dit bericht negeren? <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> - + @@ -4846,7 +4792,7 @@ Wilt u dit bericht negeren? No peer found in DHT - + @@ -4874,17 +4820,17 @@ Wilt u dit bericht negeren? Faster - Sneller + Average - Gemiddelde + Slower - Langzamer + @@ -5116,7 +5062,7 @@ Wilt u dit bericht negeren? Copy %1 to clipboard - + @@ -5372,7 +5318,7 @@ Wilt u dit bericht negeren? Relays - + @@ -5476,12 +5422,12 @@ Wilt u dit bericht negeren? Peers - Verbindingen + Relay - Relais + @@ -5491,12 +5437,12 @@ Wilt u dit bericht negeren? Proxy VIA - + Relay VIA - + @@ -5815,7 +5761,7 @@ Wilt u dit bericht negeren? # Files - + @@ -5845,12 +5791,12 @@ Wilt u dit bericht negeren? Column %1 - + Row %1 - + @@ -5870,10 +5816,6 @@ Wilt u dit bericht negeren? Expand new messages Lees alle nieuwe berichten - - Forum - Forum - Load embedded images @@ -5882,12 +5824,12 @@ Wilt u dit bericht negeren? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + @@ -5902,7 +5844,7 @@ Wilt u dit bericht negeren? Forums - Forums + @@ -5916,7 +5858,7 @@ Wilt u dit bericht negeren? ID - ID + @@ -5952,7 +5894,7 @@ Wilt u dit bericht negeren? Trusted nodes - + @@ -6005,7 +5947,7 @@ Wilt u dit bericht negeren? Search ID - + @@ -6015,12 +5957,12 @@ Wilt u dit bericht negeren? Profile details - + Deny connections - + @@ -6045,17 +5987,17 @@ Wilt u dit bericht negeren? Send message to this node - + Node details - + Recommend this node to... - + @@ -6087,20 +6029,20 @@ Wilt u dit bericht negeren? Your friendlist is stored at: - + (keep in mind that the file is unencrypted!) - + Your friendlist was imported from: - + @@ -6111,29 +6053,29 @@ Wilt u dit bericht negeren? at least one peer was not added - + at least one peer was not added to a group - + Select file for importing your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + @@ -6145,18 +6087,18 @@ at least one peer was not added to a group File is not writeable! - + File is not readable! - + Show Items - + @@ -6186,17 +6128,17 @@ at least one peer was not added to a group Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + @@ -6209,42 +6151,42 @@ at least one peer was not added to a group Dialog - Dialoog + Message: - Bericht: + Recommend friends - Aanbevolen vrienden + To - + Please select at least one friend for recommendation. - Selecteer minstens één vriend om aan te bevelen. + Please select at least one friend as recipient. - Selecteer minstens één vriend als ontvanger. + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6280,7 +6222,7 @@ at least one peer was not added to a group Filter only connected - + @@ -6402,7 +6344,7 @@ at least one peer was not added to a group <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> - + @@ -6443,14 +6385,6 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters Alle velden moet minimaal 3 karakters bevatten - - Password (check) - Wachtwoord (controle) - - - [Required] Type the same password again here. - [Vereist] Typ hetzelfde wachtwoord nogmaals hier. - Passwords do not match @@ -6464,149 +6398,145 @@ at least one peer was not added to a group Use BOB - + This password is for PGP - - - - Generate new node - Genereer een nieuw knooppunt + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Opties + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - Tekst label + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6615,131 +6545,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6792,7 +6722,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + @@ -6802,22 +6732,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6837,22 +6767,22 @@ and use the import button to load it You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6900,7 +6830,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6933,7 +6863,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:'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> @@ -6945,31 +6875,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> @@ -6982,7 +6912,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> - + @@ -6994,11 +6924,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7093,7 +7023,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + @@ -7106,62 +7036,62 @@ p, li { white-space: pre-wrap; } GroupBox - + ID - ID + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - Gegevens + @@ -7171,12 +7101,12 @@ p, li { white-space: pre-wrap; } Pending packets - + Unknown - Onbekend + @@ -7194,12 +7124,12 @@ p, li { white-space: pre-wrap; } [Unknown identity] - + : Service ID = - + @@ -7215,7 +7145,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7251,72 +7181,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7347,12 +7277,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + @@ -7362,22 +7292,22 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7405,12 +7335,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Sort Ascending Order - + @@ -7430,33 +7360,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Het laatste bericht + Never - Nooit + @@ -7466,7 +7396,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + @@ -7593,7 +7523,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7613,7 +7543,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + @@ -7623,18 +7553,18 @@ p, li { white-space: pre-wrap; } Set download directory - + [Default directory] - + Specify... - Specificeer... + @@ -7805,12 +7735,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + @@ -7837,7 +7767,7 @@ p, li { white-space: pre-wrap; } Edit - Bewerk + @@ -7919,7 +7849,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -7948,7 +7878,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -7998,32 +7928,32 @@ p, li { white-space: pre-wrap; } Never - Nooit + Public - Publiek + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -8048,23 +7978,23 @@ p, li { white-space: pre-wrap; } Administrator: - + Last Post: - + unknown - onbekend + Distribution: - + @@ -8079,7 +8009,7 @@ p, li { white-space: pre-wrap; } Subscribers - + @@ -8089,7 +8019,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8105,48 +8035,48 @@ p, li { white-space: pre-wrap; } Details - Gegevens + Remove Item - Item verwijderen + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8240,7 +8170,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8265,7 +8195,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -8443,7 +8373,7 @@ voor je een opmerking kan doen New Thread - Nieuw draadje + @@ -8477,7 +8407,7 @@ voor je een opmerking kan doen Save image - + @@ -8538,7 +8468,7 @@ 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> - + @@ -8603,54 +8533,54 @@ voor je een opmerking kan doen [Banned] - + [unknown] - + Public - Publiek + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + @@ -8675,22 +8605,22 @@ voor je een opmerking kan doen <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> - + @@ -8733,127 +8663,127 @@ voor je een opmerking kan doen New thread - + Read status - + Edit - Bewerk + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - Nooit + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8878,17 +8808,17 @@ prevents the message to be forwarded to your friends. Forum name - + Subscribers - + Posts (at neighbor nodes) - + @@ -8898,7 +8828,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8914,7 +8844,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -9018,10 +8948,6 @@ prevents the message to be forwarded to your friends. Public Publiek - - Only For Your Friends - Alleen voor uw vrienden - Publish Signatures @@ -9085,29 +9011,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Opmerkingen: + TextLabel - Tekst label + Distribution: - + Anti Spam: - + @@ -9118,45 +9044,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - Nooit + Only friends nodes in group - + @@ -9166,7 +9092,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + @@ -9197,12 +9123,12 @@ prevents the message to be forwarded to your friends. Set a descriptive description here - + Info - + @@ -9217,52 +9143,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9272,7 +9198,7 @@ prevents the message to be forwarded to your friends. Posts - + @@ -9282,7 +9208,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9335,59 +9261,59 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9445,7 +9371,7 @@ prevents the message to be forwarded to your friends. [Banned] - + @@ -9466,22 +9392,22 @@ prevents the message to be forwarded to your friends. Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9502,107 +9428,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Router Statistieken + GroupBox - + ID - ID + Destination - Doel + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Geabonneerd + Popularity - Populariteit + Details - Gegevens + Unknown Peer - + Pending data items - + Unknown - Onbekend + Yes - Ja + No - Nee + @@ -9610,42 +9536,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9832,7 +9758,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + @@ -9847,21 +9773,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9883,18 +9809,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -9917,7 +9843,7 @@ p, li { white-space: pre-wrap; }⏎ Libraries - + @@ -9950,7 +9876,7 @@ p, li { white-space: pre-wrap; }⏎ Error opening help file: - + @@ -9958,114 +9884,114 @@ p, li { white-space: pre-wrap; }⏎ Form - Formulier + Formulier Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - Kopieer uw certificaat naar het klembord + Save your Cert into a File - Sla uw Certificaat op in een bestand + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - RetroShare uitnodiging + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Uw certificaat is op het klembord geplaatst, plak en stuur het naar een vriend via email of op een andere manier + Save as... - Sla op als... + RetroShare Certificate (*.rsc );;All Files (*) - RetroShare Certificaat (*.rsc );;Alle bestanden (*) + Home - Home + @@ -10074,7 +10000,7 @@ private and secure decentralized communication platform. Person Details - + @@ -10084,17 +10010,17 @@ private and secure decentralized communication platform. Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + @@ -10124,86 +10050,86 @@ p, li { white-space: pre-wrap; } Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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: - + 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: - + [unverified] - + @@ -10248,67 +10174,67 @@ p, li { white-space: pre-wrap; } +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10342,101 +10268,101 @@ p, li { white-space: pre-wrap; } Create new circle - + Persons - + Votes - + Person - + Close - Sluiten + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - Cirkels + Circle name - + Membership - Lidmaatschap + Public Circles - Publiceer Cirkels + Personal Circles - Persoonlijke Cirkels + Edit identity - Identiteit aanpassen + Delete identity - + @@ -10461,12 +10387,12 @@ p, li { white-space: pre-wrap; } () - + Identity ID - + @@ -10476,7 +10402,7 @@ p, li { white-space: pre-wrap; } Identity info - + @@ -10491,7 +10417,7 @@ p, li { white-space: pre-wrap; } Create new... - + @@ -10501,57 +10427,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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + @@ -10561,12 +10487,12 @@ p, li { white-space: pre-wrap; } ID - ID + Search ID - + @@ -10576,182 +10502,182 @@ p, li { white-space: pre-wrap; } My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - Publiek + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - Status: + Full member - + Invited by admin - + Subscription request pending - + unknown - onbekend + Invited - + Subscription pending - + Member - + Edit Circle - Bewerk Cirkel + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10759,48 +10685,48 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + @@ -10810,7 +10736,7 @@ These identities will soon be not supported anymore. Identity owned by you, linked to your Retroshare node but not yet validated - + @@ -10825,213 +10751,213 @@ These identities will soon be not supported anymore. Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Kanalen + Forums - Forums + Posted - Gepost + Chat - Chat + Unknown - Onbekend + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + @@ -11046,7 +10972,7 @@ These identities will soon be not supported anymore. Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -11060,92 +10986,92 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11268,32 +11194,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11323,25 +11249,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11390,17 +11316,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11429,21 +11355,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - Aanbevolen in een bericht aan + @@ -11551,7 +11473,7 @@ Maak meer ruimte vrij en klik Ok. Open Messenger - + @@ -11681,22 +11603,22 @@ Maak meer ruimte vrij en klik Ok. Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11812,22 +11734,22 @@ Maak meer ruimte vrij en klik Ok. Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + @@ -11927,17 +11849,17 @@ Maak meer ruimte vrij en klik Ok. All addresses (mixed) - + All people - + My contacts - + @@ -12187,7 +12109,7 @@ Wil je het bericht bewaren in de concepten map? Details - Gegevens + @@ -12240,17 +12162,17 @@ Wil je het bericht bewaren? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12265,73 +12187,73 @@ Wil je het bericht bewaren? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12339,22 +12261,22 @@ Wil je het bericht bewaren? Everyone - + Contacts - Contacten + Nobody - + Accept encrypted distant messages from - + @@ -12416,10 +12338,6 @@ Wil je het bericht bewaren? Edit Tag Bewerk Label - - Message - Bericht - Distant messages: @@ -12433,7 +12351,7 @@ Wil je het bericht bewaren? Mail - + @@ -12497,7 +12415,7 @@ Wil je het bericht bewaren? Send Invite - + @@ -12547,12 +12465,12 @@ Wil je het bericht bewaren? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13012,7 +12930,7 @@ Wil je het bericht bewaren? <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> - + @@ -13109,7 +13027,7 @@ Wil je het bericht bewaren? This message goes to a distant person. - + @@ -13143,12 +13061,12 @@ Wil je het bericht bewaren? This message comes from a distant person. - + Mail - + @@ -13174,17 +13092,17 @@ Wil je het bericht bewaren? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13202,7 +13120,7 @@ Wil je het bericht bewaren? Send Invite - + @@ -13238,12 +13156,12 @@ Wil je het bericht bewaren? from - van + Reply to invite - + @@ -13273,12 +13191,12 @@ Wil je het bericht bewaren? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13351,22 +13269,6 @@ Wil je het bericht bewaren? Name Naam - - Did I authenticated peer - Heb ik deze Verbinding geverifieerd - - - Did I sign his PGP key - Heb ik zijn/haar PGP sleutel getekend - - - Cert Id - Cert Id - - - Last used - Laatst gebruikt - Clear @@ -13444,7 +13346,7 @@ Wil je het bericht bewaren? - 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. @@ -13487,52 +13389,6 @@ Voor de veiligheid is je sleutelbos gebackupped. Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Er kon geen backup worden gemaakt. Controleer de bestandspermissies in de pgp map, schijfruimte e.d. - - Personal signature - Persoonlijke handtekening - - - PGP key signed by you - PGP sleutel is getekend door u - - - Marginally trusted peer - Minimaal vertrouwde verbinding - - - Fully trusted peer - Volledig vertrouwde verbinding - - - Untrusted peer - Onbetrouwbare verbinding - - - Last hour - Laatste uur - - - Today - Vandaag - - - Never - Nooit - - - %1 days ago - %1 dag geleden - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - heeft u toegevoegd.⏎ -Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken. - - - yourself - uzelf - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13541,34 +13397,34 @@ Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken.< Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13635,7 +13491,7 @@ Reported error: Log entries - + @@ -13655,22 +13511,22 @@ Reported error: Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13709,7 +13565,7 @@ Reported error: Chat Room - + @@ -13741,32 +13597,32 @@ Reported error: Ip security - + Friend Connected - Vriend verbonden + Circles - Cirkels + Links - + Mails - + Chats - + @@ -13791,32 +13647,32 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Hoofdletter gevoelig + @@ -13856,7 +13712,7 @@ 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> - + @@ -13901,12 +13757,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13914,17 +13770,17 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + @@ -13934,7 +13790,7 @@ Reported error: Please enter your Retroshare passphrase - + @@ -13990,7 +13846,7 @@ Reported error: 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). - + @@ -14025,7 +13881,7 @@ Reported error: - 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 @@ -14037,13 +13893,13 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14056,37 +13912,37 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte Profile info - + Name : - + 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: - + <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 - + @@ -14096,7 +13952,7 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte No trust - + @@ -14116,46 +13972,46 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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> - + @@ -14165,32 +14021,32 @@ p, li { white-space: pre-wrap; } <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14200,53 +14056,53 @@ p, li { white-space: pre-wrap; } Options - Opties + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14273,23 +14129,23 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + @@ -14309,22 +14165,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14339,22 +14195,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14431,7 +14287,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14461,7 +14317,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14533,37 +14389,37 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - Verre chat werkt niet + Distant chat refused with this person. - + Error code - Foutcode + @@ -14571,68 +14427,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - Mensen + Reputation - Reputatie + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14723,7 +14579,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14736,7 +14592,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14749,7 +14605,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14897,7 +14753,7 @@ voordat je het kunt bewerken! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -14971,44 +14827,28 @@ p, li { white-space: pre-wrap; }⏎ Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Fout: aanleg '%1' maken van een widget lukt niet + Error: no plugin with name '%1' found Fout: geen plugin met de naam '%1' gevonden - - Error(uninstall): no plugin with name '%1' found - Error(Uninstall): geen plugin met de naam '%1' gevonden - - - Error(installation): plugin file %1 doesn't exist - Error(Installation): plugin bestand %1 bestaat niet - - - Error: failed to remove file %1(uninstalling plugin '%2') - Fout: bestand verplaatsen is mislukt %1(plug-in de-installeren ' %2 ') - Error: can't copy %1 to %2 @@ -15053,12 +14893,12 @@ p, li { white-space: pre-wrap; }⏎ Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + @@ -15072,7 +14912,7 @@ p, li { white-space: pre-wrap; }⏎ [loading problem] - + @@ -15115,7 +14955,7 @@ 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> - + @@ -15189,29 +15029,25 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - - 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. - Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + @@ -15292,7 +15128,7 @@ 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -15322,7 +15158,7 @@ malicious behavior of crafted plugins. Links - + @@ -15455,12 +15291,12 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + @@ -15558,7 +15394,7 @@ malicious behavior of crafted plugins. 1-10 - 1-10 + @@ -15568,10 +15404,6 @@ malicious behavior of crafted plugins. Tabs Tabblad - - Posted - Gepost - Open each topic in a new tab @@ -15580,7 +15412,7 @@ malicious behavior of crafted plugins. Links - + @@ -15642,13 +15474,13 @@ malicious behavior of crafted plugins. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15740,18 +15572,6 @@ en daar de importeer functie gebruiken Certificates (*.pqi *.pem) Certificaten (*.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;"> -<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 OPENBARE "-//W3C//DTD HTML 4.0 / / NL" "http://www.w3.org/TR/REC-html40/strict.dtd" > <html><head><meta name="qrichtext" content="1" /> <style type="text/css"> p, li {witruimte: vooraf laten teruglopen;}</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;"> een Retroshare knooppunt sleutel uit de onderstaande lijst om te worden gebruikt op een andere computer, selecteer en druk op "Export geselecteerd sleutel."</p> <p 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;"> Als u wilt maken een nieuwe locatie op een andere computer, selecteer de Identiteitenbeheer in het inlogvenster. Vanaf daar kunt u het sleutelbestand importeren en maak een nieuwe locatie voor die sleutel. </p> <p 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;"> het maken van een nieuw knooppunt met dezelfde sleutel kan uw uw vriend knooppunten aan je automatisch accepteren.</p></body></html> - Full keys available in your keyring: @@ -15765,7 +15585,7 @@ p, li { white-space: pre-wrap; } You can use it now to create a new node. - + @@ -15972,51 +15792,35 @@ and open the Make Friend Wizard. en open de "Maak een vriend wizzard"⏎ - - Add file - Bestand toevoegen - - - Add files - Bestanden toevoegen - - - Do you want to process the link ? - Wil je verder gaan met deze link? - - - Do you want to process %1 links ? - Wil je verder gaan met %1 link? - Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16131,17 +15935,17 @@ en open de "Maak een vriend wizzard"⏎ Posted not found - + Posted message not found - + Posted messages not found - + @@ -16151,22 +15955,22 @@ en open de "Maak een vriend wizzard"⏎ Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + @@ -16186,7 +15990,7 @@ en open de "Maak een vriend wizzard"⏎ Chat room not found - + @@ -16279,36 +16083,36 @@ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16342,20 +16146,12 @@ Lock file:⏎ Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Tunnel wordt opgezet... - - - Secured tunnel is working. You can talk! - Versleutelde tunnel is opgezet. Je kan praten! + @@ -16419,73 +16215,73 @@ De error is: %2 You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + @@ -16496,44 +16292,44 @@ De error is: %2 Subject: - Onderwerp: + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + This cert is malformed. Error code: - + The following has not been added to your download list, because you already have it: - + @@ -16543,127 +16339,127 @@ Security: no anonymous IDs unable to parse XML file! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - Onbekend + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16678,12 +16474,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16806,10 +16602,10 @@ 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: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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -16854,31 +16650,31 @@ 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; } -</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -16893,8 +16689,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -16978,7 +16774,7 @@ p, li { white-space: pre-wrap; }⏎ Do you really want to stop sharing this directory ? - Wil je werkelijk delen voor deze directory stoppen? + @@ -17022,52 +16818,52 @@ p, li { white-space: pre-wrap; }⏎ Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -17075,17 +16871,17 @@ p, li { white-space: pre-wrap; }⏎ Tree View Options - + Show column... - + [no title] - + @@ -17103,74 +16899,7 @@ p, li { white-space: pre-wrap; }⏎ <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Enable Relay Connections - Zet Relais connecties aan - - - Use Relay Servers - Gebruik relais servers - - - Relay options - Relais opties - - - Number - NUmmer - - - Bandwidth per link - Bandbreedte per link - - - Total Bandwidth - Totale bandbreedte - - - Friends - Vrienden - - - kB/s - kB/s - - - Friends of Friends - Vrienden van vrienden - - - General - Algemeen - - - Total: - Totaal: - - - Relay Server Setup - Relais server instellingen - - - Add Server - Voeg een server toe - - - Server DHT Key - Server DHT sleutel - - - Remove Server - Verwijder server - - - Relay - Relais + @@ -17178,7 +16907,7 @@ p, li { white-space: pre-wrap; }⏎ Download... - + @@ -17188,11 +16917,7 @@ p, li { white-space: pre-wrap; }⏎ Recommend in a message to... - - - - Recommend in a message to - Aanbevolen in een bericht aan + @@ -17205,12 +16930,12 @@ p, li { white-space: pre-wrap; }⏎ [All friend nodes] - + Only - + @@ -17220,7 +16945,7 @@ p, li { white-space: pre-wrap; }⏎ This node hasn't sent any directory information yet. - + @@ -17228,22 +16953,22 @@ p, li { white-space: pre-wrap; }⏎ IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -17261,28 +16986,28 @@ p, li { white-space: pre-wrap; }⏎ Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -17290,32 +17015,32 @@ p, li { white-space: pre-wrap; }⏎ Save Collection File. - Collectie opslaan. + File already exists. - Bestand bestaat al. + What do you want to do? - Wat wilt u doen? + Overwrite - Overschrijven + Merge - Samenvoegen + Cancel - Annuleren + @@ -17338,12 +17063,12 @@ p, li { white-space: pre-wrap; }⏎ Destination: - + Right click to change download directory - + @@ -17379,7 +17104,7 @@ p, li { white-space: pre-wrap; }⏎ 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. Somige bestandsnamen of directory namen bevatten verboden characters.⏎ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen door '_'.⏎ @@ -17406,23 +17131,15 @@ Betrokken bestanden zijn rood gekleurd <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>Geselecteerde item toevoegen aan de collectie.</p><p>Als een map is geselecteerd, worden alle van zijn kinderen toegevoegd.</p><p><span style="text-decoration: underline; vertical-align:sub;"> &lt; shift + Enter &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>Maak een nieuwe map in de collectie.</p><p><span style="font-style:italic; vertical-align:sub;"> &lt;&gt; +</span></p></body></html> - - + - + - Remove Duplicate - + @@ -17437,17 +17154,13 @@ Betrokken bestanden zijn rood gekleurd File Path - + File Count Bestandstotaal - - This is the root directory. - Dit is de root directory. - Real Size: Waiting child... @@ -17466,17 +17179,17 @@ Betrokken bestanden zijn rood gekleurd Download files - + Specify... - Specificeer... + Choose directory - Kies directory + @@ -17518,12 +17231,12 @@ Betrokken bestanden zijn rood gekleurd Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + @@ -17593,30 +17306,6 @@ If you believe it is correct, remove the corresponding line from the file and re Als u denkt dat het is juist dat, de bijbehorende regel uit het bestand verwijderd en opnieuw te openen met Retroshare. - - Save Collection File. - Collectie opslaan. - - - What do you want to do? - Wat wilt u doen? - - - Overwrite - Overschrijven - - - Merge - Samenvoegen - - - Cancel - Annuleren - - - File already exists. - Bestand bestaat al. - RsDownloadListModel @@ -17624,128 +17313,119 @@ Als u denkt dat het is juist dat, de bijbehorende regel uit het bestand verwijde Name i.e: file name - Naam + Size i.e: file size - Grootte + Completed - Klaar + Speed i.e: Download speed - Snelheid + Progress / Availability i.e: % downloaded - Voortgang / Beschikbaarheid + Sources i.e: Sources - Bronnen + Status - Status + Speed / Queue position - Snelheid / Rij positie + Remaining - Nog te gaan + Download time i.e: Estimated Time of Arrival / Time left - Download tijd + Hash - Index + Last Time Seen i.e: Last Time Receiced Data - Laatst Gezien Op + Path i.e: Where file is saved - Pad + Failed - Mislukt + Okay - Oke + Waiting - Wachten + Downloading - Downloading + Complete - Kompleet + Queued - In Wachtrij + Paused - Pauze + Checking... - Controleren... + Unknown - Onbekend - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Het plaatje is te groot om overgezonden te worden.⏎ -Maak het plaatje kleiner tot %1x%2 pixels + @@ -17753,7 +17433,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Invalid format - + @@ -17772,7 +17452,7 @@ Maak het plaatje kleiner tot %1x%2 pixels filename - + @@ -17782,7 +17462,7 @@ Maak het plaatje kleiner tot %1x%2 pixels level - + @@ -17792,7 +17472,7 @@ Maak het plaatje kleiner tot %1x%2 pixels style - + @@ -17802,7 +17482,7 @@ Maak het plaatje kleiner tot %1x%2 pixels stylesheet - + @@ -17812,17 +17492,13 @@ Maak het plaatje kleiner tot %1x%2 pixels language - + Sets RetroShare's language. Stel RetroShare's taal in. - - RetroShare Usage Information - RetroShare's gebruiks informatie - Unable to open log file '%1': %2 @@ -17832,7 +17508,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Invalid operating mode specified: - + @@ -17847,52 +17523,52 @@ Maak het plaatje kleiner tot %1x%2 pixels Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17901,7 +17577,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Registry Access Error. Maybe you need Administrator right. - + @@ -18217,7 +17893,7 @@ Maak het plaatje kleiner tot %1x%2 pixels IP address: - + @@ -18232,7 +17908,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Peer Name: - + @@ -18249,33 +17925,33 @@ Maak het plaatje kleiner tot %1x%2 pixels but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -18423,12 +18099,12 @@ Maak het plaatje kleiner tot %1x%2 pixels Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18441,7 +18117,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Network Mode - Netwerk mode + @@ -18487,7 +18163,7 @@ Maak het plaatje kleiner tot %1x%2 pixels NAT - + @@ -18525,15 +18201,11 @@ Maak het plaatje kleiner tot %1x%2 pixels Known / Previous IPs: Bekende / Eerdere IP's: - - Show Discovery information in statusbar - Toon ondezoeks gegevens in statusbar - 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. Als je dit uitvinkt kan RetroShare alleen je ip adres bepalen⏎ als je verbonden bent met iemand. Als je dit aangevinkt laat staan⏎ @@ -18578,7 +18250,7 @@ je ook als ja achter een Firewall of VPN zit. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + @@ -18588,32 +18260,32 @@ je ook als ja achter een Firewall of VPN zit. Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + @@ -18624,17 +18296,17 @@ je ook als ja achter een Firewall of VPN zit. I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18643,133 +18315,133 @@ je ook als ja achter een Firewall of VPN zit. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - onbekend + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + @@ -18779,159 +18451,159 @@ Also check your ports! 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Start + Restart - + Stop - Stop + BOB status - + Incoming - Binnenkomend + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18945,101 +18617,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - Relais + Enable Relay Connections - Zet Relais connecties aan + Use Relay Servers - Gebruik relais servers + Relay options - Relais opties + Number - NUmmer + Bandwidth per link - Bandbreedte per link + Total Bandwidth - Totale bandbreedte + Friends - Vrienden + Friends of Friends - Vrienden van vrienden + General - Algemeen + Total: - Totaal: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Relais server instellingen + Add Server - Voeg een server toe + Server DHT Key - Server DHT sleutel + Remove Server - Verwijder server + - <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>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> - + @@ -19049,23 +18721,23 @@ If you have issues connecting over Tor check the Tor logs too. IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -19079,13 +18751,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + @@ -19097,124 +18769,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -19227,82 +18899,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -19330,7 +19002,7 @@ If you have issues connecting over Tor check the Tor logs too. Require whitelist - + @@ -19353,12 +19025,12 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + @@ -19366,7 +19038,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Formulier + Formulier @@ -19374,7 +19046,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -19417,32 +19089,32 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Shared directory - + Visible name - + Access - + Visibility - Zichtbaarheid + Add new - + Cancel - Annuleren + @@ -19467,52 +19139,52 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Choose directory - Kies directory + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19527,7 +19199,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Choose a directory to share - + @@ -19561,11 +19233,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Configure shared directories - - - - Search files - Zoek bestanden + @@ -19637,18 +19305,10 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Send retroshare Links Stuur RetroShare links - - Send retroshare Links to Cloud - Stuur RetroShare links naar de Cloud - - - Add Links to Cloud - Voeg links toe aan de Cloud - Some files have been omitted - + @@ -19684,17 +19344,17 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19702,48 +19362,48 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Friend - Vriend + Go Online - + Chatmessage - + New Msg - + Message - Bericht + Message arrived - + Download - Download + Download complete - + Lobby - + @@ -19786,7 +19446,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Default - Standaard + @@ -19794,20 +19454,16 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Sound is off, click to turn it on - + Sound is on, click to turn it off - + SplashScreen - - Load profile - Laad profiel - Load configuration @@ -19826,15 +19482,11 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. RetroShare RetroShare - - Login - Inloggen - Password - Wachtwoord + @@ -19860,9 +19512,9 @@ De huidige identiteiten/locaties worden behouden. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19877,7 +19529,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -19893,7 +19545,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19902,7 +19554,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19911,7 +19563,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19995,7 +19647,7 @@ This choice can be reverted in settings. Gxs Transport - + @@ -20102,7 +19754,7 @@ This choice can be reverted in settings. Connected: I2P - + @@ -20117,57 +19769,57 @@ This choice can be reverted in settings. TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -20187,7 +19839,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -20200,7 +19852,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:'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">⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css">⏎ @@ -20296,7 +19948,7 @@ p, li { white-space: pre-wrap; }⏎ Remove this item - + @@ -20451,58 +20103,58 @@ p, li { white-space: pre-wrap; }⏎ Dialog - Dialoog + Setting up Tor... - + Tor status: - + Unknown - Onbekend + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20510,28 +20162,28 @@ p, li { white-space: pre-wrap; }⏎ Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20549,98 +20201,98 @@ p, li { white-space: pre-wrap; }⏎ Shared Directories - + Automatically share incoming directory (Recommended) - Deel automatisch uw opslag directory (Aanbevolen) + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - Bladeren + Partials Directory - + Maximum uploads per friend (0 = no limit) - + @@ -20655,12 +20307,12 @@ p, li { white-space: pre-wrap; }⏎ End-to-end encryption: - + Allow direct download: - + @@ -20685,50 +20337,50 @@ p, li { white-space: pre-wrap; }⏎ <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Ja + No - Nee + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + @@ -20738,32 +20390,32 @@ 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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - Bestanden + @@ -20825,21 +20477,6 @@ p, li { white-space: pre-wrap; } Completed Klaar - - Speed - i.e: Download speed - Snelheid - - - Progress / Availability - i.e: % downloaded - Voortgang / Beschikbaarheid - - - Sources - i.e: Sources - Bronnen - Status @@ -20855,16 +20492,6 @@ p, li { white-space: pre-wrap; } Remaining Nog te gaan - - Download time - i.e: Estimated Time of Arrival / Time left - Download tijd - - - Peer - i.e: user name - Verbinding - Progress @@ -20919,7 +20546,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Verbinding + @@ -21041,7 +20668,7 @@ 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> - + @@ -21068,80 +20695,16 @@ p, li { white-space: pre-wrap; } Choose directory Kies directory - - Failed - Mislukt - - - Okay - Oke - - - Waiting - Wachten - - - Downloading - Downloading - - - Complete - Kompleet - - - Queued - In Wachtrij - - - Paused - Pauze - - - Checking... - Controleren... - - - Unknown - Onbekend - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Als de indexering van de gedownloade data⏎ -niet correspondeert met de verwachte⏎ -van de bestands bron, Is de data mogelijk beschadigd.⏎ -⏎ -RetroShare zal de bron om meer gegevens vragen.⏎ -Deze vergelijken op juistheid en eventueel het opnieuw proberen.⏎ -⏎ -Even geduld a.u.b.! - - - Transferring - Bezig met overbrengen - - - Uploading - Uploading - Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + @@ -21201,15 +20764,6 @@ Even geduld a.u.b.! Please enter a new--and valid--filename Vul een nieuwe -en geldige- bestandsnaam in - - Last Time Seen - i.e: Last Time Receiced Data - Laatst Gezien Op - - - UserID - GebruikersID - @@ -21317,11 +20871,6 @@ Even geduld a.u.b.! File Transfers Bestandsoverdrachten - - Path - i.e: Where file is saved - Pad - Path @@ -21365,7 +20914,7 @@ Even geduld a.u.b.! %1 tunnels - + @@ -21375,7 +20924,7 @@ Even geduld a.u.b.! Files - Bestanden + @@ -21407,7 +20956,7 @@ Even geduld a.u.b.! Empty - + @@ -21418,7 +20967,7 @@ Even geduld a.u.b.! Friends Directories [updating...] - + @@ -21428,7 +20977,7 @@ Even geduld a.u.b.! My Directories [updating...] - + @@ -21438,7 +20987,7 @@ Even geduld a.u.b.! # Files - + @@ -21458,22 +21007,22 @@ Even geduld a.u.b.! Access - + Visibility - Zichtbaarheid + Column %1 - + Row %1 - + @@ -21522,7 +21071,7 @@ Even geduld a.u.b.! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21568,12 +21117,12 @@ Even geduld a.u.b.! Anonymous tunnels - + Authenticated tunnels - + @@ -21631,7 +21180,7 @@ Even geduld a.u.b.! Forwarded data - + @@ -21760,57 +21309,57 @@ Even geduld a.u.b.! Enable Retroshare WEB Interface - + Web parameters - + Port: - Poort: + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -22431,7 +21980,7 @@ Even geduld a.u.b.! Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -22439,134 +21988,133 @@ Even geduld a.u.b.! Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - Laatst gebruikt + Personal signature - Persoonlijke handtekening + Marginally trusted peer - Minimaal vertrouwde verbinding + Fully trusted peer - Volledig vertrouwde verbinding + Untrusted peer - Onbetrouwbare verbinding + Yes - Ja + No - Nee + Last hour - Laatste uur + Today - Vandaag + Never - Nooit + %1 days ago - %1 dag geleden + Accepted - + - - + PGP key signed by you - PGP sleutel is getekend door u + has authenticated you. Right-click and select 'make friend' to be able to connect. - heeft u toegevoegd.⏎ -Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken. + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_pl.qm b/retroshare-gui/src/lang/retroshare_pl.qm index ceb6d4aa6..173c4cc72 100644 Binary files a/retroshare-gui/src/lang/retroshare_pl.qm and b/retroshare-gui/src/lang/retroshare_pl.qm differ diff --git a/retroshare-gui/src/lang/retroshare_pl.ts b/retroshare-gui/src/lang/retroshare_pl.ts index 1dd583078..408ab8c8f 100644 --- a/retroshare-gui/src/lang/retroshare_pl.ts +++ b/retroshare-gui/src/lang/retroshare_pl.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -28,7 +26,7 @@ About - O programie + @@ -36,52 +34,52 @@ Form - Formularz + About - O programie + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - O programie RetroShare + Have fun ;-) - + Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Przepraszamy, domyślne polecenie systemowe dla tego pliku nie jest znane @@ -211,7 +209,7 @@ Landscapes - + @@ -221,7 +219,7 @@ Portraits - + @@ -241,7 +239,7 @@ Caption: - + @@ -261,12 +259,12 @@ Share Options - + Policy: - + @@ -281,7 +279,7 @@ Identity: - + @@ -291,22 +289,22 @@ Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + @@ -326,16 +324,16 @@ Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -355,7 +353,7 @@ p, li { white-space: pre-wrap; } Untitle Album - + @@ -365,12 +363,12 @@ p, li { white-space: pre-wrap; } Where were these taken? - + Load Album Thumbnail - + @@ -384,12 +382,12 @@ p, li { white-space: pre-wrap; } Album Thumbnail - + TextLabel - + @@ -409,7 +407,7 @@ p, li { white-space: pre-wrap; } Caption - + @@ -429,7 +427,7 @@ p, li { white-space: pre-wrap; } Share Options - + @@ -439,7 +437,7 @@ p, li { white-space: pre-wrap; } Publish Identity - + @@ -451,9 +449,9 @@ 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: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> - + @@ -488,14 +486,14 @@ p, li { white-space: pre-wrap; } TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -508,7 +506,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -532,7 +530,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + @@ -557,7 +555,7 @@ p, li { white-space: pre-wrap; } Tool Bar - + @@ -602,107 +600,107 @@ p, li { white-space: pre-wrap; } Icon Size = 64x64 - Rozmiar ikon = 64x64 {64x?} + Icon Size = 128x128 - Rozmiar ikon = 128x128 {128x?} + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - Rozmiar ikon = 32x32 {32x?} + @@ -717,12 +715,12 @@ 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. - + Identities - + @@ -732,22 +730,22 @@ p, li { white-space: pre-wrap; } GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -773,17 +771,17 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + @@ -793,12 +791,12 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - + Load Avatar - + @@ -814,7 +812,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -822,7 +820,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -905,33 +903,33 @@ p, li { white-space: pre-wrap; } Sum - + All - Wszyscy + KB/s - + Count - Liczba + Average - + Total - + @@ -949,62 +947,62 @@ p, li { white-space: pre-wrap; } In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + @@ -1017,57 +1015,57 @@ p, li { white-space: pre-wrap; } Form - Formularz + Friend: - + Type: - Typ: + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1080,7 +1078,7 @@ p, li { white-space: pre-wrap; } Tabs - + @@ -1090,24 +1088,20 @@ p, li { white-space: pre-wrap; } Load posts in background (Thread) - + Open each channel in a new tab - + ChatLobbyDialog - - Participants - Uczestnicy - Name - + @@ -1122,22 +1116,22 @@ p, li { white-space: pre-wrap; } Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - Sortuj według Nazwy + Sort by Activity - + @@ -1159,10 +1153,6 @@ p, li { white-space: pre-wrap; } Topic: %1 Temat: %1 - - Lobby management - Zarządzanie lobby - %1 changed his name to: %2 @@ -1186,105 +1176,105 @@ p, li { white-space: pre-wrap; } Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - Szukaj + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1300,7 +1290,7 @@ p, li { white-space: pre-wrap; } Chats - + @@ -1325,13 +1315,13 @@ p, li { white-space: pre-wrap; } Unknown Lobby - + Remove All - + @@ -1355,106 +1345,106 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1485,7 +1475,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + @@ -1505,7 +1495,7 @@ Double click a chat room to enter and chat. Search Name - + @@ -1530,22 +1520,22 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + @@ -1555,12 +1545,12 @@ Double click a chat room to enter and chat. Security: - + Peers: - + @@ -1570,36 +1560,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - Pokaż + column - + Chats - + @@ -1657,27 +1647,27 @@ Double click a chat room to enter and chat. Distant Chat - + Everyone - + Contacts - Kontakty + Nobody - + Accept encrypted distant chat from - + @@ -1687,7 +1677,7 @@ Double click a chat room to enter and chat. Enable Emoticons Private Chat - + @@ -1697,27 +1687,27 @@ Double click a chat room to enter and chat. Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + @@ -1732,27 +1722,27 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + @@ -1762,22 +1752,22 @@ Double click a chat room to enter and chat. Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + @@ -1810,14 +1800,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1834,7 +1824,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1869,7 +1859,7 @@ Double click a chat room to enter and chat. Outgoing offline message - + @@ -1884,51 +1874,47 @@ Double click a chat room to enter and chat. UserName - + /me is sending a message with /me - - - - Chat - 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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1938,72 +1924,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -2085,7 +2071,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2095,12 +2081,12 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + @@ -2151,48 +2137,48 @@ Double click a chat room to enter and chat. Quote - Cytat + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2203,18 +2189,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2249,21 +2235,17 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Wiadomości, które wyślesz zostaną dostarczone, gdy Znajomy będzie znów Online. + is Idle and may not reply - + is Away and may not reply - + @@ -2273,116 +2255,116 @@ after HTML conversion. Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2390,12 +2372,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2435,7 +2417,7 @@ Double click on it to add his name on text writer. Peers - + @@ -2476,52 +2458,52 @@ Double click on it to add his name on text writer. Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + @@ -2537,10 +2519,6 @@ Double click on it to add his name on text writer. Details Szczegóły - - Peer Address - Adres Peera - @@ -2555,12 +2533,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2573,10 +2551,6 @@ Double click on it to add his name on text writer. Port Port - - Addresses list - Lista adresów - Include signatures @@ -2594,72 +2568,72 @@ Double click on it to add his name on text writer. Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - Nazwa: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + @@ -2670,47 +2644,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2718,28 +2692,28 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2750,52 +2724,52 @@ Double click on it to add his name on text writer. Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + @@ -2805,7 +2779,7 @@ Double click on it to add his name on text writer. Drag and Drop your friends's certificate in this Window or specify path in the box below - + @@ -2815,87 +2789,87 @@ Double click on it to add his name on text writer. Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + RetroShare is better with Friends - + Invite your Friends from other Networks to RetroShare. - + GMail - + Yahoo - + Outlook - + AOL - + Yandex - + Email - Email + @@ -2910,12 +2884,12 @@ Double click on it to add his name on text writer. Your friends' email addresses: - + Enter Friends Email addresses - + @@ -2927,20 +2901,20 @@ Double click on it to add his name on text writer. Friend request - + Details about the request - + Peer details - + @@ -2957,13 +2931,13 @@ Double click on it to add his name on text writer. 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. - + @@ -2980,47 +2954,47 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + @@ -3038,58 +3012,58 @@ resources. Add as friend to connect with - + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + @@ -3104,22 +3078,22 @@ resources. Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + @@ -3135,47 +3109,47 @@ resources. Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + @@ -3188,46 +3162,46 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3237,33 +3211,33 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + @@ -3273,12 +3247,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Invite - + Connect Friend Help - + @@ -3288,7 +3262,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -3312,7 +3286,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Sorry, create certificate failed - + @@ -3328,67 +3302,67 @@ Warning: In your File-Transfer option, you select allow direct download to No. Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + Recommend many friends to each others - + Friend Recommendations - + The text below is your Retroshare certificate. You have to provide it to your friend - + @@ -3398,7 +3372,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Recommend friends - + @@ -3408,22 +3382,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3431,69 +3405,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3501,241 +3475,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3744,52 +3718,52 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + @@ -3799,27 +3773,27 @@ p, li { white-space: pre-wrap; } DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + @@ -3834,111 +3808,111 @@ p, li { white-space: pre-wrap; } Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3946,42 +3920,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3992,7 +3966,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -4002,12 +3976,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4022,28 +3996,28 @@ p, li { white-space: pre-wrap; } Filter - + Nickname - Ksywa + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4058,47 +4032,47 @@ p, li { white-space: pre-wrap; } Name: - Nazwa: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Prywatny + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4110,17 +4084,17 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4130,7 +4104,7 @@ p, li { white-space: pre-wrap; } Remove - + @@ -4151,65 +4125,65 @@ p, li { white-space: pre-wrap; } Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - Zamknij + Create New Circle - + Create - Utwórz + PGP Linked Id - + Add Member - + Remove Member - + @@ -4223,12 +4197,12 @@ p, li { white-space: pre-wrap; } Group Name: - Nazwa grupy: + Group ID: - + @@ -4238,7 +4212,7 @@ p, li { white-space: pre-wrap; } To be defined - + @@ -4258,7 +4232,7 @@ p, li { white-space: pre-wrap; } New Channel Post - + @@ -4268,28 +4242,28 @@ p, li { white-space: pre-wrap; } Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + @@ -4310,22 +4284,22 @@ p, li { white-space: pre-wrap; } Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + @@ -4336,12 +4310,12 @@ p, li { white-space: pre-wrap; } Drop file error. - + Directory can't be dropped, only files are accepted. - + @@ -4362,43 +4336,43 @@ p, li { white-space: pre-wrap; } File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4407,7 +4381,7 @@ p, li { white-space: pre-wrap; } Post Forum Message - + @@ -4452,12 +4426,12 @@ p, li { white-space: pre-wrap; } Edit Message - + No Forum - + @@ -4479,18 +4453,18 @@ p, li { white-space: pre-wrap; } Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4500,23 +4474,23 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + @@ -4526,12 +4500,12 @@ Do you want to discard this message? Post as - + Congrats, you found a bug! - + @@ -4539,77 +4513,77 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + @@ -4619,7 +4593,7 @@ Do you want to discard this message? Identity to use: - + @@ -4642,12 +4616,12 @@ Do you want to discard this message? Location ID: - + Software Version: - + @@ -4677,7 +4651,7 @@ Do you want to discard this message? A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -4687,7 +4661,7 @@ Do you want to discard this message? Your certificate could not be parsed correctly. Please contact the developers. - + @@ -4697,7 +4671,7 @@ Do you want to discard this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -4707,57 +4681,57 @@ Do you want to discard this message? RetroShare Certificate (*.rsc );;All Files (*) - Certyfikat RetroShare (*.rsc);;Wszystkie Pliki (*) + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4765,7 +4739,7 @@ Do you want to discard this message? users - + @@ -4773,38 +4747,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4832,22 +4806,22 @@ Do you want to discard this message? Faster - Szybciej + Average - + Slower - + File Never Seen - + @@ -4865,32 +4839,32 @@ Do you want to discard this message? Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + @@ -4900,7 +4874,7 @@ Do you want to discard this message? Rating - + @@ -4918,27 +4892,27 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + @@ -4953,52 +4927,52 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + @@ -5008,28 +4982,28 @@ Do you want to discard this message? Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + @@ -5059,192 +5033,192 @@ Do you want to discard this message? Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5254,27 +5228,27 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + @@ -5284,13 +5258,13 @@ Do you want to discard this message? RELAY END - + Yourself - + @@ -5301,17 +5275,17 @@ Do you want to discard this message? unlimited - + Own Relay - + RELAY PROXY - + @@ -5320,27 +5294,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5348,113 +5322,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5462,12 +5436,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5475,7 +5449,7 @@ Do you want to discard this message? Start file - + @@ -5485,12 +5459,12 @@ Do you want to discard this message? to - + ignore case - + @@ -5522,12 +5496,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5540,7 +5514,7 @@ Do you want to discard this message? Add new Association - + @@ -5550,7 +5524,7 @@ Do you want to discard this message? Edit this Association - + @@ -5560,7 +5534,7 @@ Do you want to discard this message? Remove this Association - + @@ -5570,17 +5544,17 @@ Do you want to discard this message? Friend Help - + You this - + Associations - + @@ -5588,37 +5562,37 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + @@ -5641,17 +5615,17 @@ Do you want to discard this message? Chunk size - + Number of chunks - + Transferred - + @@ -5666,7 +5640,7 @@ Do you want to discard this message? Chunk strategy - + @@ -5681,7 +5655,7 @@ Do you want to discard this message? Direct friend transfer / Availability assumed - + @@ -5704,7 +5678,7 @@ Do you want to discard this message? Archive - + @@ -5725,7 +5699,7 @@ Do you want to discard this message? RetroShare collection file - + @@ -5735,27 +5709,27 @@ Do you want to discard this message? Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5773,7 +5747,7 @@ Do you want to discard this message? # Files - + @@ -5793,7 +5767,7 @@ Do you want to discard this message? Share Flags - + @@ -5803,12 +5777,12 @@ Do you want to discard this message? Column %1 - + Row %1 - + @@ -5816,51 +5790,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages Rozszerz nowe wiadomości - - Forum - Forum - Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5874,7 +5844,7 @@ Do you want to discard this message? ID - ID + @@ -5884,33 +5854,33 @@ Do you want to discard this message? export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + @@ -5958,27 +5928,27 @@ Do you want to discard this message? Search - Szukaj + Search ID - + Sort by state - + Profile details - + Deny connections - + @@ -6003,17 +5973,17 @@ Do you want to discard this message? Send message to this node - + Node details - + Recommend this node to... - + @@ -6039,127 +6009,127 @@ Do you want to discard this message? 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - Błąd + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6167,42 +6137,42 @@ at least one peer was not added to a group Dialog - + Message: - Wiadomość: + Recommend friends - + To - Do + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6210,7 +6180,7 @@ at least one peer was not added to a group Confirm Friend Request - + @@ -6228,17 +6198,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6253,12 +6223,12 @@ at least one peer was not added to a group Mark all - Zaznacz wszystkie + Mark none - + @@ -6266,13 +6236,13 @@ at least one peer was not added to a group Edit status message - + Broadcast - + @@ -6297,12 +6267,12 @@ at least one peer was not added to a group Set your status message - + Edit your status message - + @@ -6340,7 +6310,7 @@ at least one peer was not added to a group Create new Chat lobby - + @@ -6355,33 +6325,33 @@ at least one peer was not added to a group Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6399,12 +6369,12 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters - + Passwords do not match - + @@ -6414,145 +6384,145 @@ at least one peer was not added to a group Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Opcje + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6561,131 +6531,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6693,7 +6663,7 @@ and use the import button to load it Startup - + @@ -6723,12 +6693,12 @@ and use the import button to load it Misc - + Do not show the Quit RetroShare MessageBox - + @@ -6738,7 +6708,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + @@ -6748,22 +6718,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6783,22 +6753,22 @@ and use the import button to load it You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6824,7 +6794,7 @@ and use the import button to load it Minimize to Tray Icon - + @@ -6846,19 +6816,19 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Your Friends to RetroShare - + @@ -6870,7 +6840,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:'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> @@ -6882,31 +6852,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> @@ -6919,23 +6889,23 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -6960,7 +6930,7 @@ p, li { white-space: pre-wrap; } Open Online Forums - + @@ -6990,7 +6960,7 @@ p, li { white-space: pre-wrap; } RetroShare is a private Friend-2-Friend sharing network. - + @@ -7000,7 +6970,7 @@ p, li { white-space: pre-wrap; } Here is your friends ID Certificate. - + @@ -7015,7 +6985,7 @@ p, li { white-space: pre-wrap; } Cut Below Here - + @@ -7030,7 +7000,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + @@ -7038,82 +7008,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - ID + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - Szczegóły + Unknown Peer - + Pending packets - + Unknown - Nieznane + @@ -7121,22 +7091,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7152,7 +7122,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7188,72 +7158,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7266,7 +7236,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7274,7 +7244,7 @@ p, li { white-space: pre-wrap; } Share - + @@ -7284,37 +7254,37 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7342,12 +7312,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Sort Ascending Order - + @@ -7367,33 +7337,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Ostatni Post + Never - Nigdy + @@ -7403,7 +7373,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + @@ -7530,7 +7500,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7550,7 +7520,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + @@ -7560,18 +7530,18 @@ p, li { white-space: pre-wrap; } Set download directory - + [Default directory] - + Specify... - + @@ -7589,12 +7559,12 @@ p, li { white-space: pre-wrap; } TextLabel - + Open folder - + @@ -7604,7 +7574,7 @@ p, li { white-space: pre-wrap; } Paused - + @@ -7614,17 +7584,17 @@ p, li { white-space: pre-wrap; } Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7637,7 +7607,7 @@ p, li { white-space: pre-wrap; } Filename - + @@ -7652,7 +7622,7 @@ p, li { white-space: pre-wrap; } Published - + @@ -7665,32 +7635,32 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + @@ -7742,12 +7712,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + @@ -7774,7 +7744,7 @@ p, li { white-space: pre-wrap; } Edit - Edytuj + @@ -7795,7 +7765,7 @@ p, li { white-space: pre-wrap; } Set as read and remove item - + @@ -7841,12 +7811,12 @@ p, li { white-space: pre-wrap; } I like this - + I dislike this - + @@ -7856,7 +7826,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -7885,7 +7855,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -7895,7 +7865,7 @@ p, li { white-space: pre-wrap; } Search channels - + @@ -7915,17 +7885,17 @@ p, li { white-space: pre-wrap; } Search Message - + Filename - + Search Filename - + @@ -7935,32 +7905,32 @@ p, li { white-space: pre-wrap; } Never - Nigdy + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -7975,38 +7945,38 @@ p, li { white-space: pre-wrap; } Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - nieznane + Distribution: - + Feeds - + @@ -8016,7 +7986,7 @@ p, li { white-space: pre-wrap; } Subscribers - + @@ -8026,7 +7996,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8042,48 +8012,48 @@ p, li { white-space: pre-wrap; } Details - Szczegóły + Remove Item - Usuń element + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8091,7 +8061,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8104,7 +8074,7 @@ p, li { white-space: pre-wrap; } Hot - + @@ -8114,12 +8084,12 @@ p, li { white-space: pre-wrap; } Top - + Voter ID: - + @@ -8149,17 +8119,17 @@ p, li { white-space: pre-wrap; } UpVotes - + DownVotes - + OwnVote - + @@ -8177,7 +8147,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8202,7 +8172,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8212,18 +8182,18 @@ p, li { white-space: pre-wrap; }⏎ </style></head><body style=&q Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8246,17 +8216,17 @@ before you can comment Update Forum - + Add Forum Admins - + Select Forum Admins - + @@ -8314,7 +8284,7 @@ before you can comment Unsubscribe To Forum - + @@ -8325,7 +8295,7 @@ before you can comment Set as read and remove item - + @@ -8335,7 +8305,7 @@ before you can comment In Reply to: - + @@ -8345,7 +8315,7 @@ before you can comment Forum Feed - + @@ -8378,7 +8348,7 @@ before you can comment New Thread - Nowy Wątek + @@ -8412,7 +8382,7 @@ before you can comment Save image - + @@ -8473,7 +8443,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> - + @@ -8538,54 +8508,54 @@ before you can comment [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + @@ -8610,22 +8580,22 @@ 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> - + @@ -8668,127 +8638,127 @@ before you can comment New thread - + Read status - + Edit - Edytuj + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - Nigdy + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8808,22 +8778,22 @@ prevents the message to be forwarded to your friends. On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + @@ -8833,7 +8803,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8849,7 +8819,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -8893,7 +8863,7 @@ prevents the message to be forwarded to your friends. Retrieving - + @@ -8917,22 +8887,22 @@ prevents the message to be forwarded to your friends. Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + @@ -8953,10 +8923,6 @@ prevents the message to be forwarded to your friends. Public Publiczne - - Only For Your Friends - Tylko Dla Twoich Przyjaciół - Publish Signatures @@ -9000,7 +8966,7 @@ prevents the message to be forwarded to your friends. If No Publish Signature - + @@ -9020,29 +8986,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Komentarze: + TextLabel - + Distribution: - + Anti Spam: - + @@ -9053,45 +9019,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - Nigdy + Only friends nodes in group - + @@ -9101,7 +9067,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + @@ -9111,33 +9077,33 @@ prevents the message to be forwarded to your friends. Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + @@ -9152,52 +9118,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9207,7 +9173,7 @@ prevents the message to be forwarded to your friends. Posts - + @@ -9217,7 +9183,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9230,7 +9196,7 @@ prevents the message to be forwarded to your friends. Todo - + @@ -9260,69 +9226,69 @@ prevents the message to be forwarded to your friends. Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9342,7 +9308,7 @@ prevents the message to be forwarded to your friends. AUTHD - + @@ -9350,7 +9316,7 @@ prevents the message to be forwarded to your friends. No Signature - + @@ -9368,55 +9334,55 @@ prevents the message to be forwarded to your friends. Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9437,107 +9403,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - ID + Destination - Cel + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Subskrybowane + Popularity - Popularność + Details - Szczegóły + Unknown Peer - + Pending data items - + Unknown - Nieznane + Yes - Tak + No - Nie + @@ -9545,42 +9511,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9589,12 +9555,12 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + @@ -9654,7 +9620,7 @@ prevents the message to be forwarded to your friends. Searching for: - + @@ -9679,7 +9645,7 @@ prevents the message to be forwarded to your friends. Forward - + @@ -9694,7 +9660,7 @@ prevents the message to be forwarded to your friends. Home - + @@ -9731,7 +9697,7 @@ prevents the message to be forwarded to your friends. Close Vidalia Help - + @@ -9741,7 +9707,7 @@ prevents the message to be forwarded to your friends. Supplied XML file is not a valid Contents document. - + @@ -9767,7 +9733,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + @@ -9782,21 +9748,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9818,23 +9784,23 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9852,7 +9818,7 @@ p, li { white-space: pre-wrap; } Libraries - + @@ -9885,7 +9851,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - + @@ -9893,114 +9859,114 @@ p, li { white-space: pre-wrap; } Form - Formularz + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - Zapisz jako... + RetroShare Certificate (*.rsc );;All Files (*) - Certyfikat RetroShare (*.rsc);;Wszystkie Pliki (*) + Home - + @@ -10009,32 +9975,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10044,206 +10010,206 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10267,7 +10233,7 @@ p, li { white-space: pre-wrap; } Anonymous Id - + @@ -10277,156 +10243,156 @@ p, li { white-space: pre-wrap; } Create new circle - + Persons - + Votes - + Person - + Close - Zamknij + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - Kręgi + Circle name - + Membership - Członkostwo + Public Circles - Kręgi Publiczne + Personal Circles - Kręgi Osobiste + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10436,57 +10402,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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + @@ -10496,197 +10462,197 @@ p, li { white-space: pre-wrap; } ID - ID + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - Status: + Full member - + Invited by admin - + Subscription request pending - + unknown - nieznane + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10694,294 +10660,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Kanały + Forums - + Posted - + Chat - Chat + Unknown - Nieznane + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10989,98 +10955,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11093,7 +11059,7 @@ These identities will soon be not supported anymore. Key ID - + @@ -11108,7 +11074,7 @@ These identities will soon be not supported anymore. PGP Id - + @@ -11118,13 +11084,13 @@ These identities will soon be not supported anymore. New identity - + To be generated - + @@ -11137,38 +11103,38 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11183,7 +11149,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11192,7 +11158,7 @@ These identities will soon be not supported anymore. RM - + @@ -11203,32 +11169,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11241,12 +11207,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11258,25 +11224,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11325,17 +11291,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11359,32 +11325,32 @@ These identities will soon be not supported anymore. Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11413,7 +11379,7 @@ These identities will soon be not supported anymore. Messenger - + @@ -11459,7 +11425,7 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + @@ -11479,17 +11445,17 @@ These identities will soon be not supported anymore. Open Messenger - + Open Messages - + Bandwidth Graph - + @@ -11534,12 +11500,12 @@ These identities will soon be not supported anymore. Down: %1 (kB/s) - + Up: %1 (kB/s) - + @@ -11574,12 +11540,12 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + @@ -11589,42 +11555,42 @@ These identities will soon be not supported anymore. The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11633,7 +11599,7 @@ These identities will soon be not supported anymore. Compose - + @@ -11648,38 +11614,38 @@ These identities will soon be not supported anymore. Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + @@ -11714,7 +11680,7 @@ These identities will soon be not supported anymore. Sets text font to code style - + @@ -11740,22 +11706,22 @@ These identities will soon be not supported anymore. Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + @@ -11795,7 +11761,7 @@ These identities will soon be not supported anymore. Toggle Contacts View - + @@ -11825,7 +11791,7 @@ These identities will soon be not supported anymore. Add Blockquote - + @@ -11850,27 +11816,27 @@ These identities will soon be not supported anymore. &Justify - + 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> - + @@ -11880,7 +11846,7 @@ These identities will soon be not supported anymore. This friend is suggested by - + @@ -11890,7 +11856,7 @@ These identities will soon be not supported anymore. 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 - + @@ -11918,12 +11884,12 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Add to "CC" - + Add to "BCC" - + @@ -11952,7 +11918,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Cc - + @@ -11967,7 +11933,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? On %1, %2 wrote: - + @@ -12000,7 +11966,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Bcc - + @@ -12090,7 +12056,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? &Contacts Sidebar - + @@ -12110,12 +12076,12 @@ Czy chcesz zapisać wiadomość do wersji roboczych? &Format - + Details - Szczegóły + @@ -12168,17 +12134,17 @@ Czy chcesz zapisać wiadomość ? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12193,73 +12159,73 @@ Czy chcesz zapisać wiadomość ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12267,37 +12233,37 @@ Czy chcesz zapisać wiadomość ? Everyone - + Contacts - Kontakty + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + @@ -12307,7 +12273,7 @@ Czy chcesz zapisać wiadomość ? Tags can be used to categorize and prioritize your messages - + @@ -12344,24 +12310,20 @@ Czy chcesz zapisać wiadomość ? Edit Tag Edytuj Tag - - Message - Wiadomość - Distant messages: - + Load embedded images - + Mail - + @@ -12369,7 +12331,7 @@ Czy chcesz zapisać wiadomość ? Sub: - + @@ -12410,12 +12372,12 @@ Czy chcesz zapisać wiadomość ? Cc: - + Bcc: - + @@ -12425,7 +12387,7 @@ Czy chcesz zapisać wiadomość ? Send Invite - + @@ -12475,12 +12437,12 @@ Czy chcesz zapisać wiadomość ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -12506,17 +12468,17 @@ Czy chcesz zapisać wiadomość ? Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12529,7 +12491,7 @@ Czy chcesz zapisać wiadomość ? Compose - + @@ -12549,7 +12511,7 @@ Czy chcesz zapisać wiadomość ? Reply all - + @@ -12559,7 +12521,7 @@ Czy chcesz zapisać wiadomość ? Forward - + @@ -12662,7 +12624,7 @@ Czy chcesz zapisać wiadomość ? Compose - + @@ -12682,7 +12644,7 @@ Czy chcesz zapisać wiadomość ? Reply all - + @@ -12692,7 +12654,7 @@ Czy chcesz zapisać wiadomość ? Foward - + @@ -12766,7 +12728,7 @@ Czy chcesz zapisać wiadomość ? Total Inbox: - + @@ -12818,23 +12780,23 @@ Czy chcesz zapisać wiadomość ? Save As... - + Reply to Message - + Reply to All - + Forward Message - + @@ -12864,53 +12826,53 @@ Czy chcesz zapisać wiadomość ? Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + @@ -12940,27 +12902,27 @@ Czy chcesz zapisać wiadomość ? <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 - + System - System + Open in a new window - + Open in a new tab - + @@ -12975,7 +12937,7 @@ Czy chcesz zapisać wiadomość ? Add Star - + @@ -12985,44 +12947,44 @@ Czy chcesz zapisać wiadomość ? Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + @@ -13032,12 +12994,12 @@ Czy chcesz zapisać wiadomość ? Click to sort by to - + This message goes to a distant person. - + @@ -13046,7 +13008,7 @@ Czy chcesz zapisać wiadomość ? Total: - + @@ -13056,27 +13018,27 @@ Czy chcesz zapisać wiadomość ? Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13084,17 +13046,17 @@ Czy chcesz zapisać wiadomość ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13102,17 +13064,17 @@ Czy chcesz zapisać wiadomość ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13130,22 +13092,22 @@ Czy chcesz zapisać wiadomość ? Send Invite - + Reply to Message - + Reply Message - Odpowiedz Wiadomością + Delete Message - + @@ -13166,32 +13128,32 @@ Czy chcesz zapisać wiadomość ? from - od + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + @@ -13201,12 +13163,12 @@ Czy chcesz zapisać wiadomość ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13214,52 +13176,52 @@ Czy chcesz zapisać wiadomość ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13267,56 +13229,52 @@ Czy chcesz zapisać wiadomość ? Filter: - + Search Network - + Name Nazwa - - Did I sign his PGP key - Czy podpisałem/am jego klucz PGP - Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + @@ -13326,27 +13284,27 @@ Czy chcesz zapisać wiadomość ? Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + @@ -13356,22 +13314,22 @@ Czy chcesz zapisać wiadomość ? Clean keyring - + - 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. - + Keyring info - + @@ -13379,7 +13337,7 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + @@ -13389,61 +13347,49 @@ For security, your keyring was previously backed-up to file Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - - PGP key signed by you - Klucz PGP podpisany przez ciebie - - - Today - Dzisiaj - - - Never - Nigdy + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13451,7 +13397,7 @@ Reported error: Network - + @@ -13459,22 +13405,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13482,7 +13428,7 @@ Reported error: New Tag - + @@ -13492,7 +13438,7 @@ Reported error: Choose color - + @@ -13510,7 +13456,7 @@ Reported error: Log entries - + @@ -13520,7 +13466,7 @@ Reported error: Remove All - + @@ -13530,22 +13476,22 @@ Reported error: Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13553,7 +13499,7 @@ Reported error: News Feed - + @@ -13584,12 +13530,12 @@ Reported error: Chat Room - + Systray Icon - + @@ -13600,48 +13546,48 @@ Reported error: Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - Kręgi + Links - + Mails - + Chats - + @@ -13651,12 +13597,12 @@ Reported error: Download completed - Pobieranie zakończone + Private Chat - + @@ -13666,92 +13612,92 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Rozróżnianie wielkości liter + Position - + X Margin - + Y Margin - + Systray message - + Group chat - Chat grupowy + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + @@ -13761,27 +13707,27 @@ Reported error: Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13789,57 +13735,57 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + @@ -13854,18 +13800,18 @@ Reported error: Unknown title - + Encrypted message - + 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). - + @@ -13873,7 +13819,7 @@ Reported error: Friend Online - + @@ -13886,7 +13832,7 @@ Reported error: No Anon D/L - + @@ -13896,26 +13842,26 @@ Reported error: Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13923,42 +13869,42 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + @@ -13968,66 +13914,66 @@ Reported error: No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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> - + @@ -14037,32 +13983,32 @@ p, li { white-space: pre-wrap; } <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14072,53 +14018,53 @@ p, li { white-space: pre-wrap; } Options - Opcje + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14132,75 +14078,75 @@ p, li { white-space: pre-wrap; } Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + @@ -14210,22 +14156,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14272,12 +14218,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + @@ -14287,12 +14233,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP Address: - + Connection Method: - + @@ -14302,7 +14248,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14317,27 +14263,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14350,7 +14296,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + @@ -14360,7 +14306,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Send Message - + @@ -14368,12 +14314,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + @@ -14388,53 +14334,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14442,68 +14388,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - Reputacja + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14519,7 +14465,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + @@ -14529,7 +14475,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. TextLabel - + @@ -14544,7 +14490,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Caption - + @@ -14587,14 +14533,14 @@ Warning: In your File-Transfer option, you select allow direct download to No. TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14607,7 +14553,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14620,9 +14566,9 @@ 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: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> - + @@ -14665,7 +14611,7 @@ p, li { white-space: pre-wrap; } Shared Albums - + @@ -14675,13 +14621,13 @@ p, li { white-space: pre-wrap; } PhotoShare - + Please select an album before requesting to edit it! - + @@ -14689,7 +14635,7 @@ requesting to edit it! Album Name - + @@ -14751,7 +14697,7 @@ requesting to edit it! TextLabel - + @@ -14763,7 +14709,7 @@ requesting to edit it! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14789,17 +14735,17 @@ p, li { white-space: pre-wrap; } Disable - + Launch configuration panel, if provided by the plugin - + Configure - + @@ -14809,12 +14755,12 @@ p, li { white-space: pre-wrap; } File name: - + File hash: - + @@ -14832,37 +14778,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14870,22 +14816,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14893,27 +14839,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14922,37 +14868,37 @@ 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. - + Unknown status. - + @@ -14960,12 +14906,12 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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> - + @@ -14987,17 +14933,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -15010,31 +14956,31 @@ malicious behavior of crafted plugins. Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -15042,32 +14988,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15075,7 +15021,7 @@ malicious behavior of crafted plugins. Signed by: - + @@ -15090,32 +15036,32 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + @@ -15125,7 +15071,7 @@ malicious behavior of crafted plugins. Link - + @@ -15133,17 +15079,17 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + @@ -15168,7 +15114,7 @@ malicious behavior of crafted plugins. Links - + @@ -15176,32 +15122,32 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + @@ -15214,7 +15160,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15230,7 +15176,7 @@ malicious behavior of crafted plugins. Posted Description - + @@ -15240,7 +15186,7 @@ malicious behavior of crafted plugins. New Posted - + @@ -15265,7 +15211,7 @@ malicious behavior of crafted plugins. Comments - Komentarze + @@ -15276,12 +15222,12 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + @@ -15291,7 +15237,7 @@ malicious behavior of crafted plugins. Set as read and remove item - + @@ -15301,12 +15247,12 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + @@ -15326,7 +15272,7 @@ malicious behavior of crafted plugins. By - + @@ -15339,7 +15285,7 @@ malicious behavior of crafted plugins. Hot - + @@ -15349,7 +15295,7 @@ malicious behavior of crafted plugins. Top - + @@ -15364,22 +15310,22 @@ malicious behavior of crafted plugins. This Week - + This Month - + This Year - + Submit a new Post - + @@ -15394,7 +15340,7 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + @@ -15404,7 +15350,7 @@ malicious behavior of crafted plugins. 1-10 - 1-10 + @@ -15412,17 +15358,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15430,7 +15376,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15438,7 +15384,7 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + @@ -15453,22 +15399,22 @@ malicious behavior of crafted plugins. Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15484,13 +15430,13 @@ malicious behavior of crafted plugins. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15505,7 +15451,7 @@ p, li { white-space: pre-wrap; } GID - + @@ -15531,7 +15477,7 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + @@ -15566,7 +15512,7 @@ and use the import button to load it Your identity was imported successfully: - + @@ -15581,17 +15527,17 @@ and use the import button to load it Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15600,12 +15546,12 @@ and use the import button to load it Edit status message - + Copy Certificate - + @@ -15630,7 +15576,7 @@ and use the import button to load it Peer ID: - + @@ -15665,7 +15611,7 @@ and use the import button to load it External Address: - + @@ -15675,7 +15621,7 @@ and use the import button to load it Addresses list: - + @@ -15686,12 +15632,12 @@ and use the import button to load it Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15699,7 +15645,7 @@ and use the import button to load it Post From: - + @@ -15723,7 +15669,7 @@ and use the import button to load it Add to Pulse - + @@ -15733,7 +15679,7 @@ and use the import button to load it URL Adder - + @@ -15753,7 +15699,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15782,119 +15728,119 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + @@ -15904,107 +15850,107 @@ and open the Make Friend Wizard. Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + @@ -16016,52 +15962,52 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + @@ -16072,86 +16018,86 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16159,27 +16105,27 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + @@ -16189,276 +16135,276 @@ Reported error is: TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - Temat: + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + This cert is malformed. Error code: - + The following has not been added to your download list, because you already have it: - + Error - Błąd + unable to parse XML file! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - Nieznane + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16473,12 +16419,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16487,7 +16433,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> - + @@ -16495,7 +16441,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16504,73 +16450,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - Automatyczne (UPnP) + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16578,17 +16524,17 @@ 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; } -</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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16606,12 +16552,12 @@ p, li { white-space: pre-wrap; } Network Wide - + Browseable - + @@ -16626,65 +16572,65 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + @@ -16694,42 +16640,42 @@ p, li { white-space: pre-wrap; } Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - Ostrzeżenie! + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16737,12 +16683,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16773,12 +16719,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16786,52 +16732,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16839,17 +16785,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16857,28 +16803,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Friends - Przyjaciele - - - General - Ogólne + @@ -16886,7 +16821,7 @@ p, li { white-space: pre-wrap; } Download... - + @@ -16896,12 +16831,12 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - + Collection - + @@ -16909,22 +16844,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16932,22 +16867,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -16960,33 +16895,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16994,32 +16929,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - Nadpisanie + Merge - + Cancel - Anuluj + @@ -17027,27 +16962,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -17058,7 +16993,7 @@ p, li { white-space: pre-wrap; } Download! - + @@ -17078,12 +17013,12 @@ p, li { white-space: pre-wrap; } Bad filenames have been cleaned - + 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. Niektóre nazwy plików lub katalogów zawierały zakazane symbole. Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpione przez '_'. @@ -17092,7 +17027,7 @@ Pliki których to dotyczy są oznaczone na czerwono. Selected files : - + @@ -17103,26 +17038,22 @@ Pliki których to dotyczy są oznaczone na czerwono. <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17132,69 +17063,69 @@ Pliki których to dotyczy są oznaczone na czerwono. Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17204,47 +17135,47 @@ Pliki których to dotyczy są oznaczone na czerwono. Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17253,17 +17184,17 @@ Pliki których to dotyczy są oznaczone na czerwono. Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17271,29 +17202,21 @@ Pliki których to dotyczy są oznaczone na czerwono. Collection files - + Create collection file - + 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. - - - - Overwrite - Nadpisanie - - - Cancel - Anuluj + @@ -17302,119 +17225,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - + Size i.e: file size - Rozmiar + Completed - + Speed i.e: Download speed - Prędkość + Progress / Availability i.e: % downloaded - Postęp / Dostępność + Sources i.e: Sources - Źródła + Status - + Speed / Queue position - + Remaining - Pozostałe + Download time i.e: Estimated Time of Arrival / Time left - + Hash - Hash + Last Time Seen i.e: Last Time Receiced Data - Ostatnio widziano + Path i.e: Where file is saved - Ścieżka + Failed - + Okay - Ok + Waiting - Oczekiwanie + Downloading - Pobieranie + Complete - + Queued - + Paused - + Checking... - Sprawdzanie... + Unknown - Nieznane + @@ -17422,7 +17345,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17430,74 +17353,74 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + @@ -17507,57 +17430,57 @@ If you believe it is correct, remove the corresponding line from the file and re Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17566,7 +17489,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17582,12 +17505,12 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + @@ -17597,43 +17520,43 @@ If you believe it is correct, remove the corresponding line from the file and re Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + @@ -17643,27 +17566,27 @@ If you believe it is correct, remove the corresponding line from the file and re Clear - + KeyWords - + Results - + Search Id - + Filename - + @@ -17693,27 +17616,27 @@ If you believe it is correct, remove the corresponding line from the file and re Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + @@ -17723,7 +17646,7 @@ If you believe it is correct, remove the corresponding line from the file and re CD-Image - + @@ -17753,12 +17676,12 @@ If you believe it is correct, remove the corresponding line from the file and re Download Selected - + Download selected - + @@ -17779,7 +17702,7 @@ If you believe it is correct, remove the corresponding line from the file and re Send RetroShare Link - + @@ -17789,24 +17712,24 @@ If you believe it is correct, remove the corresponding line from the file and re Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + @@ -17816,7 +17739,7 @@ If you believe it is correct, remove the corresponding line from the file and re Remove All - + @@ -17827,7 +17750,7 @@ If you believe it is correct, remove the corresponding line from the file and re New RetroShare Link(s) - + @@ -17837,27 +17760,27 @@ If you believe it is correct, remove the corresponding line from the file and re Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17865,7 +17788,7 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + @@ -17881,12 +17804,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP address: - + Peer ID: - + @@ -17896,14 +17819,14 @@ If you believe it is correct, remove the corresponding line from the file and re Peer Name: - + Unknown Peer - + @@ -17913,33 +17836,33 @@ If you believe it is correct, remove the corresponding line from the file and re but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17952,17 +17875,17 @@ If you believe it is correct, remove the corresponding line from the file and re Accept Friend Request - + Peer details - + Deny friend - + @@ -17993,12 +17916,12 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + @@ -18008,12 +17931,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP Address: - + Connection Method: - + @@ -18028,12 +17951,12 @@ If you believe it is correct, remove the corresponding line from the file and re Connect Attempt - + Connection refused by remote peer - + @@ -18043,12 +17966,12 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -18057,7 +17980,7 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + @@ -18072,27 +17995,27 @@ If you believe it is correct, remove the corresponding line from the file and re Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18100,12 +18023,12 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + @@ -18115,7 +18038,7 @@ If you believe it is correct, remove the corresponding line from the file and re Firewalled - + @@ -18125,22 +18048,22 @@ If you believe it is correct, remove the corresponding line from the file and re Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -18151,56 +18074,56 @@ If you believe it is correct, remove the corresponding line from the file and re NAT - + External Address - Adres zewnętrzny + Dynamic DNS - Dynamiczny DNS + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18209,89 +18132,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18300,295 +18223,295 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - nieznane + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Start + Restart - + Stop - Stop + BOB status - + Incoming - Przychodzące + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18602,127 +18525,127 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - Przyjaciele + Friends of Friends - Przyjaciele Przyjaciół + General - Ogólne + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18736,13 +18659,13 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + @@ -18754,124 +18677,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -18884,82 +18807,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18967,27 +18890,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18995,7 +18918,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -19010,12 +18933,12 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + @@ -19023,7 +18946,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Formularz + @@ -19031,7 +18954,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -19039,7 +18962,7 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + @@ -19049,13 +18972,13 @@ If you have issues connecting over Tor check the Tor logs too. Share - + 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. - + @@ -19063,47 +18986,47 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - Widoczność + Add new - + Cancel - Anuluj + Add a Share Directory - + @@ -19118,57 +19041,57 @@ Select the Friends with which you want to Share your Channel. Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19178,33 +19101,33 @@ Select the Friends with which you want to Share your Channel. Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19217,12 +19140,12 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - + Start Search - + @@ -19232,7 +19155,7 @@ Select the Friends with which you want to Share your Channel. Tree view - + @@ -19247,27 +19170,27 @@ Select the Friends with which you want to Share your Channel. One day old - + One Week old - + One month old - + check files - + Download selected - + @@ -19277,68 +19200,68 @@ Select the Friends with which you want to Share your Channel. Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19346,48 +19269,48 @@ Select the Friends with which you want to Share your Channel. Friend - Przyjaciel + Go Online - + Chatmessage - + New Msg - + Message - Wiadomość + Message arrived - + Download - Pobierz + Download complete - + Lobby - + @@ -19415,7 +19338,7 @@ Select the Friends with which you want to Share your Channel. Filename - + @@ -19430,7 +19353,7 @@ Select the Friends with which you want to Share your Channel. Default - Domyślne + @@ -19438,29 +19361,25 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + SplashScreen - - Load profile - Załaduj profil - Load configuration - + Create interface - + @@ -19470,46 +19389,42 @@ Select the Friends with which you want to Share your Channel. RetroShare RetroShare - - Login - Login - Password - Hasło + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + @@ -19519,7 +19434,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -19535,7 +19450,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19544,7 +19459,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19553,7 +19468,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19581,7 +19496,7 @@ This choice can be reverted in settings. Messenger - + @@ -19607,37 +19522,37 @@ This choice can be reverted in settings. ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + @@ -19651,22 +19566,22 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + @@ -19676,38 +19591,38 @@ This choice can be reverted in settings. Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + @@ -19723,93 +19638,93 @@ This choice can be reverted in settings. Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19817,7 +19732,7 @@ This choice can be reverted in settings. Status message - + @@ -19829,16 +19744,16 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -19853,23 +19768,23 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + @@ -19884,12 +19799,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19907,7 +19822,7 @@ p, li { white-space: pre-wrap; } Download File - + @@ -19919,7 +19834,7 @@ p, li { white-space: pre-wrap; } Play File - + @@ -19929,28 +19844,28 @@ p, li { white-space: pre-wrap; } Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + @@ -19960,33 +19875,33 @@ p, li { white-space: pre-wrap; } LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -20035,22 +19950,22 @@ p, li { white-space: pre-wrap; } Important - + Work - Praca + Personal - + Todo - + @@ -20076,12 +19991,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -20089,58 +20004,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - Nieznane + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20148,28 +20063,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20187,128 +20102,128 @@ p, li { white-space: pre-wrap; } Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - Przeglądaj + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + @@ -20323,85 +20238,85 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Tak + No - Nie + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - Pliki + @@ -20444,7 +20359,7 @@ p, li { white-space: pre-wrap; } Uploads - + @@ -20461,22 +20376,7 @@ p, li { white-space: pre-wrap; } Completed - - - - Speed - i.e: Download speed - Prędkość - - - Progress / Availability - i.e: % downloaded - Postęp / Dostępność - - - Sources - i.e: Sources - Źródła + @@ -20486,7 +20386,7 @@ p, li { white-space: pre-wrap; } Speed / Queue position - + @@ -20508,7 +20408,7 @@ p, li { white-space: pre-wrap; } Transferred - + @@ -20526,7 +20426,7 @@ p, li { white-space: pre-wrap; } Friends files - + @@ -20536,7 +20436,7 @@ p, li { white-space: pre-wrap; } Download from collection file... - + @@ -20547,7 +20447,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - + @@ -20604,37 +20504,37 @@ p, li { white-space: pre-wrap; } Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + @@ -20649,7 +20549,7 @@ p, li { white-space: pre-wrap; } Progressive - + @@ -20659,73 +20559,53 @@ p, li { white-space: pre-wrap; } Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Okay - Ok - - - Waiting - Oczekiwanie - - - Downloading - Pobieranie - - - Checking... - Sprawdzanie... - - - Unknown - Nieznane + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + @@ -20748,7 +20628,7 @@ p, li { white-space: pre-wrap; } Can't create link for file %1. - + @@ -20758,37 +20638,32 @@ p, li { white-space: pre-wrap; } Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - - - - Last Time Seen - i.e: Last Time Receiced Data - Ostatnio widziano + @@ -20810,12 +20685,12 @@ p, li { white-space: pre-wrap; } Show Size Column - + Show Completed Column - + @@ -20845,37 +20720,37 @@ p, li { white-space: pre-wrap; } Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + @@ -20885,7 +20760,7 @@ p, li { white-space: pre-wrap; } Show Last Time Seen Column - + @@ -20897,11 +20772,6 @@ p, li { white-space: pre-wrap; } File Transfers Transfery plików - - Path - i.e: Where file is saved - Ścieżka - Path @@ -20910,52 +20780,52 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - Pliki + @@ -20987,18 +20857,18 @@ p, li { white-space: pre-wrap; } Empty - + DIR - + Friends Directories [updating...] - + @@ -21008,7 +20878,7 @@ p, li { white-space: pre-wrap; } My Directories [updating...] - + @@ -21018,7 +20888,7 @@ p, li { white-space: pre-wrap; } # Files - + @@ -21038,22 +20908,22 @@ p, li { white-space: pre-wrap; } Access - + Visibility - Widoczność + Column %1 - + Row %1 - + @@ -21067,13 +20937,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -21082,17 +20952,17 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + @@ -21102,12 +20972,12 @@ p, li { white-space: pre-wrap; } Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -21115,12 +20985,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -21128,42 +20998,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21171,47 +21041,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21340,57 +21210,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21418,7 +21288,7 @@ p, li { white-space: pre-wrap; } Holiday - Wakacje + @@ -21439,7 +21309,7 @@ p, li { white-space: pre-wrap; } Random - Losowe + @@ -21449,7 +21319,7 @@ p, li { white-space: pre-wrap; } Share Options - + @@ -21459,32 +21329,32 @@ p, li { white-space: pre-wrap; } All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + @@ -21533,17 +21403,17 @@ p, li { white-space: pre-wrap; } Page Name - + Page Id - + Orig Id - + @@ -21558,7 +21428,7 @@ p, li { white-space: pre-wrap; } Republish - + @@ -21583,42 +21453,42 @@ p, li { white-space: pre-wrap; } My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + @@ -21636,17 +21506,17 @@ p, li { white-space: pre-wrap; } Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + @@ -21656,12 +21526,12 @@ p, li { white-space: pre-wrap; } By - + PageId - + @@ -21719,12 +21589,12 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + @@ -21745,7 +21615,7 @@ p, li { white-space: pre-wrap; } Republish - + @@ -21789,7 +21659,7 @@ p, li { white-space: pre-wrap; } Update Group - + @@ -21797,7 +21667,7 @@ p, li { white-space: pre-wrap; } TimeRange - + @@ -21833,17 +21703,17 @@ p, li { white-space: pre-wrap; } until - + Search/Filter - + Network Wide - + @@ -21853,12 +21723,12 @@ p, li { white-space: pre-wrap; } Showing: - + Yourself - + @@ -21873,7 +21743,7 @@ p, li { white-space: pre-wrap; } Custom - + @@ -21897,12 +21767,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21917,7 +21787,7 @@ p, li { white-space: pre-wrap; } B bytes - + @@ -21953,65 +21823,65 @@ p, li { white-space: pre-wrap; } < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -22019,133 +21889,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - Tak + No - Nie + Last hour - + Today - + Never - Nigdy + %1 days ago - + Accepted - + - - + PGP key signed by you - Klucz PGP podpisany przez ciebie + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_pt.qm b/retroshare-gui/src/lang/retroshare_pt.qm index fb828bf0d..e70204a4c 100644 Binary files a/retroshare-gui/src/lang/retroshare_pt.qm and b/retroshare-gui/src/lang/retroshare_pt.qm differ diff --git a/retroshare-gui/src/lang/retroshare_pt.ts b/retroshare-gui/src/lang/retroshare_pt.ts index 1162e6690..75387aaef 100644 --- a/retroshare-gui/src/lang/retroshare_pt.ts +++ b/retroshare-gui/src/lang/retroshare_pt.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -20,7 +18,7 @@ About RetroShare - + @@ -28,7 +26,7 @@ About - + @@ -36,52 +34,52 @@ Form - + About - + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - + Have fun ;-) - + Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + @@ -97,28 +95,28 @@ File type(extension): - + Use default command - + Command - + RetroShare - + - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - + @@ -126,42 +124,42 @@ RetroShare: Advanced Search - + Search Criteria - + Add a further search criterion. - + Reset the search criteria. - + Cancels the search. - + Cancel - + Perform the advanced search. - + Search - + @@ -170,206 +168,206 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + Description: - + Share Options - + Policy: - + Quality: - + Comments: - + Identity: - + Public - + Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -378,101 +376,101 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + Description: - + Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -480,32 +478,32 @@ p, li { white-space: pre-wrap; } Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -513,187 +511,187 @@ p, li { white-space: pre-wrap; } Language - + Choose the language used in RetroShare - + (Needs restart) - + Style - + Choose RetroShare's interface style - + Style Sheet - + Appearance - + Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -702,43 +700,43 @@ p, li { white-space: pre-wrap; } 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -746,17 +744,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + [ERROR]) - + @@ -764,32 +762,32 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + Remove - + Set your Avatar picture - + Load Avatar - + @@ -797,7 +795,7 @@ p, li { white-space: pre-wrap; } Click to change your avatar - + @@ -805,7 +803,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -813,7 +811,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -821,7 +819,7 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - + @@ -837,57 +835,57 @@ p, li { white-space: pre-wrap; } Receive Rate - + Send Rate - + Always on Top - + Style - + Changes the transparency of the Bandwidth Graph - + 100 - + % Opaque - + Save - + Cancel - + Since: - + Hide Settings - + @@ -896,33 +894,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -930,77 +928,77 @@ p, li { white-space: pre-wrap; } Name - + ID - + In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + Form - + @@ -1008,57 +1006,57 @@ p, li { white-space: pre-wrap; } Form - + Friend: - + Type: - + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1066,27 +1064,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1094,180 +1092,180 @@ p, li { white-space: pre-wrap; } Name - + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1275,7 +1273,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1283,38 +1281,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1323,227 +1321,227 @@ p, li { white-space: pre-wrap; } Name - + Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private - + Public - + Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + Yes - + No - + Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - + @@ -1553,36 +1551,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - Mostrar + column - + Chats - + @@ -1590,43 +1588,43 @@ Double click a chat room to enter and chat. Remove Item - + Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + Cancel - + Quick Message - + @@ -1635,279 +1633,279 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + Style - + Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1917,72 +1915,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1990,32 +1988,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2023,7 +2021,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2031,7 +2029,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2039,325 +2037,325 @@ Double click a chat room to enter and chat. Close - + Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2365,12 +2363,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2378,131 +2376,131 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + Name - + IDs - + Personal Circles - + Public Circles - + Peers - + Status - + ID - + Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2510,174 +2508,174 @@ Double click on it to add his name on text writer. Details - + Local Address - + External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - + Include signatures - + RetroShare - + Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - Nome: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + none - + <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2685,229 +2683,229 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2919,23 +2917,23 @@ Double click on it to add his name on text writer. 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: - + @@ -2947,254 +2945,254 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3204,63 +3202,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3268,129 +3266,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3398,69 +3396,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3468,241 +3466,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3711,201 +3709,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3913,42 +3911,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3959,135 +3957,135 @@ p, li { white-space: pre-wrap; } Circle Details - + Name - + <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + Public - + IDs - + Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + ID - + Type - + Name: - Nome: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4097,86 +4095,86 @@ p, li { white-space: pre-wrap; } Remove - + Search - + All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4185,38 +4183,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4225,147 +4223,147 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + RetroShare - + File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4374,131 +4372,131 @@ p, li { white-space: pre-wrap; } Post Forum Message - + Forum - + Subject - + Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + RetroShare - + Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4506,87 +4504,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4594,7 +4592,7 @@ Do you want to discard this message? Public Information - + @@ -4604,127 +4602,127 @@ Do you want to discard this message? Location: - + Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + RetroShare - + Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4732,7 +4730,7 @@ Do you want to discard this message? users - + @@ -4740,38 +4738,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4779,42 +4777,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4822,62 +4820,62 @@ Do you want to discard this message? Details - + General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + Copy link to clipboard - + Rating - + Comments - + File Name - + @@ -4885,333 +4883,333 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + Peer Address - + Name - + PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + Source - + Proxy - + Destination - + Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5221,64 +5219,64 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + Unknown - + RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5287,27 +5285,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5315,113 +5313,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5429,12 +5427,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5442,7 +5440,7 @@ Do you want to discard this message? Start file - + @@ -5452,36 +5450,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5489,12 +5487,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5502,52 +5500,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5555,47 +5553,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5603,52 +5601,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5656,73 +5654,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5730,52 +5728,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5783,47 +5781,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages - + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5831,298 +5829,298 @@ Do you want to discard this message? Last Contact - + ID - + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6130,42 +6128,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6173,17 +6171,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6191,37 +6189,37 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + Name - + Search Friends - + Mark all - + Mark none - + @@ -6229,122 +6227,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6352,170 +6350,170 @@ at least one peer was not added to a group Create new Profile - + Password - + All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Opções + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6524,131 +6522,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6656,138 +6654,138 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + Misc - + Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6796,44 +6794,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6845,31 +6843,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> @@ -6882,118 +6880,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7001,82 +6999,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - + @@ -7084,22 +7082,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7107,7 +7105,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7115,7 +7113,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7123,27 +7121,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7151,72 +7149,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7224,12 +7222,12 @@ p, li { white-space: pre-wrap; } Form - + Hide tabbar with one open tab - + @@ -7237,47 +7235,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7285,88 +7283,88 @@ p, li { white-space: pre-wrap; } Title - + Search Title - + Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - + Display - + Subscribe to download and read messages - + @@ -7374,22 +7372,22 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + Name - + @@ -7399,72 +7397,72 @@ p, li { white-space: pre-wrap; } Extension - + Hash - + Date - + Size - + Popularity - + contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7473,68 +7471,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7542,52 +7540,52 @@ p, li { white-space: pre-wrap; } Form - + Download - + TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7595,32 +7593,32 @@ p, li { white-space: pre-wrap; } Form - + Filename - + Size - + Title - + Published - + Status - + @@ -7628,37 +7626,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7666,38 +7664,38 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + Expand - + Remove Item - + Channel Description - + Loading - + New Channel - + Hide - + @@ -7705,121 +7703,121 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + Download - + Play - + Comments - + Edit - + Copy RetroShare Link - + Unsubscribe From Channel - + Expand - + Set as read and remove item - + Remove Item - + Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + Hide - + New - + 0 - + Comment - + I like this - + I dislike this - + Loading - + Comments - + @@ -7829,12 +7827,12 @@ p, li { white-space: pre-wrap; } Open File - + Play Media - + @@ -7842,154 +7840,154 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + Title - + Search Title - + Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + Feeds - + Files - + Subscribers - + Description: - + Posts (at neighbor nodes): - + @@ -7997,7 +7995,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8005,48 +8003,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8054,7 +8052,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8062,67 +8060,67 @@ p, li { white-space: pre-wrap; } Form - + Hot - + New - + Top - + Voter ID: - + Refresh - + Comment - + Author - + Date - + Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8130,27 +8128,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8158,32 +8156,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8191,37 +8189,37 @@ before you can comment Create New Forum - + Forum - + Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8229,38 +8227,38 @@ before you can comment Subscribe to Forum - + Expand - + Remove Item - + Forum Description - + Loading - + New Forum - + Hide - + @@ -8269,48 +8267,48 @@ before you can comment Subject: - + Unsubscribe To Forum - + Expand - + Set as read and remove item - + Remove Item - + In Reply to: - + Loading - + Forum Feed - + Hide - + @@ -8318,274 +8316,274 @@ before you can comment Form - + Start new Thread for Selected Forum - + Search forums - + Last Post - + New Thread - + Threaded View - + Flat View - + Title - + Date - + Author - + Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + Search Title - + Search Date - + Search Author - + Content - + Search Content - + <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> - + No name - + Reply - + Start New Thread - + Expand all - + Collapse all - + Mark as read - + with children - + Mark as unread - + Copy RetroShare Link - + Hide - + Expand - + [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + none - + [ ... Missing 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> - + @@ -8598,12 +8596,12 @@ before you can comment RetroShare - + No Forum Selected! - + @@ -8611,189 +8609,189 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + Subject - + On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8801,7 +8799,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8809,38 +8807,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8848,17 +8846,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8867,43 +8865,43 @@ prevents the message to be forwarded to your friends. Name - + Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8911,12 +8909,12 @@ prevents the message to be forwarded to your friends. Public - + Publish Signatures - + @@ -8926,254 +8924,254 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + ID - + Last Post - + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + Popularity - + Posts - + Author - + GxsIdLabel - + @@ -9181,124 +9179,124 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + Unsubscribe - + Subscribe - + Open in new tab - + Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + Mark all as read - + Mark all as unread - + AUTHD - + @@ -9306,12 +9304,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9319,60 +9317,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9380,12 +9378,12 @@ prevents the message to be forwarded to your friends. Loading - + No name - + @@ -9393,107 +9391,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - + Destination - + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - + Details - + Unknown Peer - + Pending data items - + Unknown - + Yes - + No - + @@ -9501,42 +9499,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9545,17 +9543,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9564,22 +9562,22 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + @@ -9589,141 +9587,141 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + Search - + Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + Close - + Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9731,66 +9729,66 @@ prevents the message to be forwarded to your friends. 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9799,12 +9797,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9812,32 +9810,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9845,114 +9843,114 @@ p, li { white-space: pre-wrap; } Form - + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9961,241 +9959,241 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + Type: - + Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10204,441 +10202,441 @@ p, li { white-space: pre-wrap; } All - + Reputation - + Search - + Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10646,294 +10644,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10941,98 +10939,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11040,43 +11038,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11089,43 +11087,43 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + Type - + @@ -11135,7 +11133,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11144,7 +11142,7 @@ These identities will soon be not supported anymore. RM - + @@ -11155,32 +11153,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11188,17 +11186,17 @@ These identities will soon be not supported anymore. Name - + KeyId - + GXSId - + @@ -11210,25 +11208,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11237,7 +11235,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11248,12 +11246,12 @@ These identities will soon be not supported anymore. Remove - + Mark all - + @@ -11263,12 +11261,12 @@ These identities will soon be not supported anymore. Clear history - + Send - + @@ -11277,17 +11275,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11296,47 +11294,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11344,17 +11342,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11365,44 +11363,44 @@ These identities will soon be not supported anymore. Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11411,112 +11409,112 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + Status - + Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + Help - + Minimize - + Maximize - + &Quit - + RetroShare - + %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + Hide - + @@ -11526,57 +11524,57 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11585,555 +11583,555 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + Save - + Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + Subject - + On %1, %2 wrote: - + Re: - + Fwd: - + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown - + &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Close - + @@ -12143,73 +12141,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12217,47 +12215,47 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12267,7 +12265,7 @@ Do you want to save message ? Edit - + @@ -12282,32 +12280,32 @@ Do you want to save message ? A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12315,7 +12313,7 @@ Do you want to save message ? Sub: - + @@ -12323,7 +12321,7 @@ Do you want to save message ? Message - + @@ -12331,17 +12329,17 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + @@ -12356,113 +12354,113 @@ Do you want to save message ? Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + Download - + Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12470,47 +12468,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + @@ -12520,81 +12518,81 @@ Do you want to save message ? Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12603,47 +12601,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + @@ -12653,17 +12651,17 @@ Do you want to save message ? Print selected message - + Print - + Display - + @@ -12672,7 +12670,7 @@ Do you want to save message ? Tags - + @@ -12680,7 +12678,7 @@ Do you want to save message ? Inbox - + @@ -12688,18 +12686,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12707,283 +12705,283 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + Subject - + From - + Date - + Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + Search Date - + Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + Mark as read - + Mark as unread - + Add Star - + Edit - + Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -12992,37 +12990,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13030,17 +13028,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13048,27 +13046,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13076,83 +13074,83 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + Play Media - + Expand - + Remove Item - + from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + Hide - + Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13160,52 +13158,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13213,107 +13211,107 @@ Do you want to save message ? Filter: - + Search Network - + Name - + Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13321,59 +13319,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13381,7 +13379,7 @@ Reported error: Network - + @@ -13389,22 +13387,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13412,7 +13410,7 @@ Reported error: New Tag - + @@ -13422,17 +13420,17 @@ Reported error: Choose color - + OK - + Cancel - + @@ -13440,7 +13438,7 @@ Reported error: Log entries - + @@ -13450,32 +13448,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13483,235 +13481,235 @@ Reported error: News Feed - + Channels - + Forums - + Blogs - + Security - + Test - + Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Sensível capitalização + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13719,83 +13717,83 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + Test - + This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13803,7 +13801,7 @@ Reported error: Friend Online - + @@ -13811,41 +13809,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13853,309 +13851,309 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - Opções + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + RetroShare - + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + Maybe password is wrong - + You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14168,7 +14166,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - + @@ -14176,23 +14174,23 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + Expand - + Remove Item - + @@ -14202,72 +14200,72 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14280,17 +14278,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + Hide - + Send Message - + @@ -14298,17 +14296,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14318,53 +14316,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14372,68 +14370,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14441,7 +14439,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + @@ -14449,62 +14447,62 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + Comment - + Summary - + Caption - + Where: - + Photo Title: - + When - + ... - + Add Comment - + Write a comment... - + @@ -14512,39 +14510,39 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14552,58 +14550,58 @@ p, li { white-space: pre-wrap; } Form - + Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14611,53 +14609,53 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + Close - + Start - + Start Slide Show - + Stop Slide Show - + @@ -14665,7 +14663,7 @@ requesting to edit it! Remove - + @@ -14673,26 +14671,26 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14702,47 +14700,47 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + About - + File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14750,37 +14748,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14788,22 +14786,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14811,27 +14809,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14840,37 +14838,37 @@ 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. - + Unknown status. - + @@ -14878,18 +14876,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14897,7 +14895,7 @@ malicious behavior of crafted plugins. Popularity - + @@ -14905,17 +14903,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14923,36 +14921,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14960,32 +14958,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -14993,57 +14991,57 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + RetroShare - + Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + Title - + Link - + @@ -15051,42 +15049,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15094,37 +15092,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15132,38 +15130,38 @@ malicious behavior of crafted plugins. Subscribe to Posted - + Expand - + Remove Item - + Posted Description - + Loading - + New Posted - + Hide - + @@ -15171,80 +15169,80 @@ malicious behavior of crafted plugins. 0 - + Site - + Comments - + Comment - + Vote up - + Vote down - + \/ - + Set as read and remove item - + New - + New Comment: - + Comment Value - + Toggle Message Read Status - + Remove Item - + Loading - + By - + @@ -15252,77 +15250,77 @@ malicious behavior of crafted plugins. Form - + Hot - + New - + Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + Next - + RetroShare - + Please create or choose a Signing Id before Voting - + Previous - + 1-10 - + @@ -15330,17 +15328,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15348,7 +15346,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15356,37 +15354,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15395,52 +15393,52 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + Name - + Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15449,67 +15447,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15518,22 +15516,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15543,73 +15541,73 @@ and use the import button to load it Location: - + Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + RetroShare - + Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15617,61 +15615,61 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + Cancel - + Post Pulse to Wire - + @@ -15679,19 +15677,19 @@ and use the import button to load it From - + Date - + ... - + @@ -15700,375 +15698,375 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + Forum not found - + Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + RetroShare - + Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16076,306 +16074,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16383,19 +16381,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16404,7 +16402,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> - + @@ -16412,7 +16410,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16421,73 +16419,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16495,35 +16493,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16533,115 +16531,115 @@ p, li { white-space: pre-wrap; } Remove - + Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16649,12 +16647,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16662,17 +16660,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16680,17 +16678,17 @@ p, li { white-space: pre-wrap; } Form - + The loading of embedded images is blocked. - + Load images - + @@ -16698,52 +16696,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16751,17 +16749,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16769,17 +16767,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16787,22 +16785,22 @@ p, li { white-space: pre-wrap; } Download... - + Download - + Recommend in a message to... - + Collection - + @@ -16810,22 +16808,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16833,27 +16831,27 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + Unknown - + @@ -16861,33 +16859,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16895,32 +16893,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - Sobrepor + Merge - + Cancel - + @@ -16928,168 +16926,168 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + Cancel - + Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + ... - + <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + Save - + Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17099,47 +17097,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17148,17 +17146,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17166,25 +17164,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Overwrite - Sobrepor + @@ -17193,119 +17187,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - Caminho + Failed - + Okay - + Waiting - + Downloading - + Complete - + Queued - + Paused - + Checking... - + Unknown - + @@ -17313,7 +17307,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17321,134 +17315,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17457,7 +17451,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17465,7 +17459,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17473,282 +17467,282 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + Search - + Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + Type - + Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice - + Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + Remove - + Remove All - + Folder - + New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17756,81 +17750,81 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + Expand - + Remove Item - + IP address: - + Peer ID: - + Location: - + Peer Name: - + Unknown Peer - + Hide - + but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17838,43 +17832,43 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + Expand - + Remove Item - + @@ -17884,62 +17878,62 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17948,42 +17942,42 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + Hide - + Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -17991,107 +17985,107 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + Local Address - + NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18100,89 +18094,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18191,300 +18185,300 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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 - + @@ -18493,364 +18487,364 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + Status - + Origin - + Reason - + Comment - + IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + Remove - + 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18858,27 +18852,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18886,7 +18880,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -18896,17 +18890,17 @@ If you have issues connecting over Tor check the Tor logs too. Permissions - + 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> - + @@ -18914,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + @@ -18922,7 +18916,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18930,23 +18924,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18954,148 +18948,148 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - + Add a Share Directory - + Remove - + Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19103,17 +19097,17 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + @@ -19123,113 +19117,113 @@ Select the Friends with which you want to Share your Channel. Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + Download - + Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19237,48 +19231,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - + Download complete - + Lobby - + @@ -19286,7 +19280,7 @@ Select the Friends with which you want to Share your Channel. Event: - + @@ -19296,32 +19290,32 @@ Select the Friends with which you want to Share your Channel. Browse - + Event - + Filename - + Open File - + Sound - + Default - Omissão + @@ -19329,12 +19323,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19342,12 +19336,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19355,61 +19349,61 @@ Select the Friends with which you want to Share your Channel. RetroShare - + Password - + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19418,7 +19412,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19427,7 +19421,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19436,7 +19430,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19444,17 +19438,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19464,68 +19458,68 @@ This choice can be reverted in settings. Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19534,165 +19528,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19700,30 +19694,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19732,28 +19726,28 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + Style - + @@ -19763,12 +19757,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19776,96 +19770,96 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + Download File - + Download - + Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + DOWNLOAD - + LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19875,12 +19869,12 @@ p, li { white-space: pre-wrap; } Open File - + Copy RetroShare Link - + @@ -19888,17 +19882,17 @@ p, li { white-space: pre-wrap; } Subscribed - + Unsubscribe - + Subscribe - + @@ -19906,7 +19900,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19914,27 +19908,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19942,12 +19936,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19955,12 +19949,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19968,58 +19962,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20027,28 +20021,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20056,231 +20050,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20288,27 +20282,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20317,269 +20311,269 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + Name i.e: file name - + Size i.e: file size - + Completed - + Status - + Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + Search - + Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + Cancel - + Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + RetroShare - + @@ -20587,159 +20581,154 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - - - - Path - i.e: Where file is saved - Caminho + @@ -20749,52 +20738,52 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20803,101 +20792,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20906,13 +20895,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20921,32 +20910,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20954,12 +20943,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20967,42 +20956,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21010,47 +20999,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21062,7 +21051,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21070,22 +21059,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21093,22 +21082,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21116,37 +21105,37 @@ p, li { white-space: pre-wrap; } OK - + Cancel - + Yes - + No - + Help - + Retry - + Show Log - + @@ -21161,12 +21150,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21174,62 +21163,62 @@ p, li { white-space: pre-wrap; } Form - + Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21237,123 +21226,123 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + Description: - + Share Options - + Public - + All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21362,107 +21351,107 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + Edit - + New Page - + Refresh - + Search - + My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21470,79 +21459,79 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + Status - + @@ -21553,44 +21542,44 @@ p, li { white-space: pre-wrap; } Cancel - + Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21598,37 +21587,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21636,98 +21625,98 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + New - + from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21736,12 +21725,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21750,107 +21739,107 @@ p, li { white-space: pre-wrap; } Unknown Unknown (size) - + B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + Unknown - + < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21858,133 +21847,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - + No - + Last hour - + Today - + Never - + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_ru.qm b/retroshare-gui/src/lang/retroshare_ru.qm index d03f3edd4..c60f6f497 100644 Binary files a/retroshare-gui/src/lang/retroshare_ru.qm and b/retroshare-gui/src/lang/retroshare_ru.qm differ diff --git a/retroshare-gui/src/lang/retroshare_ru.ts b/retroshare-gui/src/lang/retroshare_ru.ts index 0f47e761d..e278ecb96 100644 --- a/retroshare-gui/src/lang/retroshare_ru.ts +++ b/retroshare-gui/src/lang/retroshare_ru.ts @@ -1,6 +1,4 @@ - - - + AWidget @@ -81,7 +79,7 @@ Only Hidden Node - + Только скрытый узел сети @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file К сожалению, для этого типа файла не удалось определить программу по умолчанию @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -690,7 +688,7 @@ p, li { white-space: pre-wrap; } Disable SysTray ToolTip - Трэй без подсказки + Отключить подсказки в системном трее @@ -914,7 +912,7 @@ p, li { white-space: pre-wrap; } Sum - Сумма + Суммарно @@ -930,17 +928,17 @@ p, li { white-space: pre-wrap; } Count - ИТОГ + Подсчёт Average - Норма + Среднее Total - + Всего @@ -973,7 +971,7 @@ p, li { white-space: pre-wrap; } InAllocated (KB/s) - В выделенных (кБ/с) + В выделенных (КБ/с) @@ -1061,17 +1059,17 @@ p, li { white-space: pre-wrap; } Legend: - + Пояснение: Current - + Текущий Total - + Всего @@ -1109,10 +1107,6 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - Участники - Name @@ -1168,10 +1162,6 @@ p, li { white-space: pre-wrap; } Topic: %1 Тема: %1 - - Lobby management - управление комнатой чата - %1 changed his name to: %2 @@ -1186,12 +1176,12 @@ p, li { white-space: pre-wrap; } This participant is not active since: - Этот участник неактивен с: + Этот участник неактивен с: seconds - секунд + сек. @@ -1279,7 +1269,7 @@ p, li { white-space: pre-wrap; } Chat room management - + Управление чат-комнатой @@ -1422,7 +1412,7 @@ p, li { white-space: pre-wrap; } Copy RetroShare Link - Скопировать ссылку RetroShare + Скопировать ссылку RetroShare @@ -1461,7 +1451,7 @@ Double click a chat room to enter and chat. Choose a non anonymous identity for this chat room: - + Выберите неанонимную личность для этой чат-комнаты: @@ -1497,7 +1487,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - анонимные ID разрешены + Допустимы анонимные участники @@ -1587,12 +1577,12 @@ Double click a chat room to enter and chat. Default identity is anonymous - Личность по-умолчанию — anonymous + Анонимная личность по умолчанию No anonymous IDs - Анонимные личности не допускаются + Анонимные участники не допускаются @@ -1619,7 +1609,7 @@ Double click a chat room to enter and chat. Remove Item - Удалить пункт + Удалить объект @@ -1674,7 +1664,7 @@ Double click a chat room to enter and chat. Everyone - кто угодно + Все @@ -1684,7 +1674,7 @@ Double click a chat room to enter and chat. Nobody - никто + Никто @@ -1846,7 +1836,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + Выберите свой шрифт по умолчанию для чата. @@ -1903,10 +1893,6 @@ Double click a chat room to enter and chat. /me is sending a message with /me /me отправляет сообщение с /me - - 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> @@ -1935,17 +1921,17 @@ Double click a chat room to enter and chat. Maximum storage period, in days (0=keep all): - Максимальный срок хранения, в днях (0 = бесконечно): + Максимальный срок хранения, в днях (0 - бесконечно): Search by default - Поиск по умолчанию + Параметры поиска по умолчанию Case sensitive - Регистрозависимость + Учитывать регистр @@ -1970,12 +1956,12 @@ Double click a chat room to enter and chat. Choose color of found text - Выберать цвет найденного текста + Выбрать цвет найденного текста Maximum count for coloring matching text - Максимальное значение для цвета выделяющего текста + Максимальное количество вхождений, выделяемых цветом @@ -2005,7 +1991,7 @@ Double click a chat room to enter and chat. PGP id : - PGP id : + PGP-идентификатор: @@ -2015,7 +2001,7 @@ Double click a chat room to enter and chat. Chats - Чаты + Чаты @@ -2193,13 +2179,13 @@ Double click a chat room to enter and chat. Send as plain text without font. - Послать как простой текст без шрифта + Послать как простой текст без шрифта. Don't replace tag with Emote Icon. - Не заменять текст смайлами + Не заменять текст смайлами. @@ -2215,8 +2201,8 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - %1 символов -после конвертирования в HTML. + Есть место для %1 символов +после преобразования в HTML. @@ -2228,7 +2214,7 @@ after HTML conversion. Choose your font. - + Выберите шрифт. @@ -2243,7 +2229,7 @@ after HTML conversion. Load Picture File - Загрузить файл изображение + Загрузить файл изображения @@ -2263,11 +2249,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Отправляемое сообщение будет доставлено целевому узлу, когда он появится в сети + Сообщения, которые вы отправляете, будут доставлены после того, как доверенный узел снова будет в сети. @@ -2304,7 +2286,7 @@ after HTML conversion. Don't stop to color after X items found (need more CPU) - Не оставляйте цвет после найденных X пунктов (требуется больше ресурсов процессора) + Продолжить выделять цветом после X найденных вхождений (требуется больше ресурсов процессора) @@ -2324,7 +2306,7 @@ after HTML conversion. (Status) - (состояние) + (Состояние) @@ -2339,7 +2321,7 @@ after HTML conversion. WARNING: Could take a long time on big history. - ВНИМАНИЕ! Может потребовать много времени в случае большой истории + ВНИМАНИЕ: может потребовать много времени в случае большого размера истории. @@ -2355,23 +2337,23 @@ after HTML conversion. Person id: - + Идентификатор личности: Double click on it to add his name on text writer. - + Двойной щелчок, чтобы добавить имя в текстовый редактор. Unsigned - + Не подписано items found. - удовлетворяют условию. + удовлетворяют условию. @@ -2391,12 +2373,12 @@ Double click on it to add his name on text writer. Don't stop to color after - Не оставляйте цвет после + Продолжить выделять цветом после items found (need more CPU) - найденные пункты (требуется больше ресурсов процессора) + найденных вхождений (требуется больше ресурсов процессора) @@ -2417,7 +2399,7 @@ Double click on it to add his name on text writer. Showing details: - Показаны подробности: + Подробности: @@ -2433,18 +2415,18 @@ Double click on it to add his name on text writer. IDs - ID + Идентификатор Personal Circles - Личные Круги + Личные круги Public Circles - Публичные Круги + Публичные круги @@ -2459,7 +2441,7 @@ Double click on it to add his name on text writer. ID - ID + Идентификатор @@ -2551,10 +2533,6 @@ Double click on it to add his name on text writer. Details Подробности - - Peer Address - Адрес узла - @@ -2569,12 +2547,12 @@ Double click on it to add his name on text writer. Node info: - + Сведения об узле: Current address: - + Текущий адрес: @@ -2587,10 +2565,6 @@ Double click on it to add his name on text writer. Port Порт - - Addresses list - Список адресов - Include signatures @@ -2620,19 +2594,11 @@ Double click on it to add his name on text writer. Not connected не соединён - - Peer Addresses - адреса участника - Retroshare node details Сведения об узле Retroshare - - Friend info - Информация об узле - Node name : @@ -2656,7 +2622,7 @@ Double click on it to add his name on text writer. Node ID : - ID узла: + Идентификатор узла: @@ -2671,16 +2637,12 @@ Double click on it to add his name on text writer. List of known addresses: - - - - Connectivity - Статус соединения + Список известных адресов: Retroshare Certificate - Сертификат Retroshare + Сертификат Retroshare @@ -2701,12 +2663,12 @@ Double click on it to add his name on text writer. <li>a <b>node ID</b> and <b>name</b> - <li><b>имя</b> и <b>ID узла</b> + <li><b>идентификатор узла</b> и <b>имя</b> an <b>onion address</b> and <b>port</b> - <b>порт</b> и <b>адрес узла</b> + <b>onion-адрес</b> и <b>порт</b> @@ -2721,7 +2683,7 @@ Double click on it to add his name on text writer. <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> + <html><head/> <body><p>Это идентификатор узла <span style="font-weight:600;"> OpenSSL</span> сертификат, которого подписан <span style="font-weight:600;"> PGP</span> ключём выше.</p></body></html> @@ -2765,7 +2727,8 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &Отправить приглашение по электронной почте +(ваш контакт получит письмо с инструкциями, откуда скачать RetroShare) @@ -2791,17 +2754,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Открыть сертификат вашего контакта из файла Open certificate - + Открыть сертификат Please, paste your friend's Retroshare certificate into the box below - Пожалуйста, втавьте сертификат доверенного узла в поле внизу + Пожалуйста, вставьте сертификат другого участника сети в поле внизу @@ -2861,12 +2824,12 @@ Double click on it to add his name on text writer. RetroShare ID - RetroShare ID + Идентификатор RetroShare Use RetroShare ID for adding a Friend which is available in your network. - Использовать RetroShare ID для обмена сертификатами с существующим узлом сети. + Использовать идентификатор RetroShare для обмена сертификатами с существующим узлом сети. @@ -2916,12 +2879,12 @@ Double click on it to add his name on text writer. Yandex - Yandex + Яндекс Email - Email + Электронная почта @@ -2936,7 +2899,7 @@ Double click on it to add his name on text writer. Your friends' email addresses: - Адреса электронных почт ваших друзей: + Адреса электронной почты: @@ -3021,13 +2984,7 @@ resources. &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) - &Отправить приглашение по электронной почте -(ваш контрагент получит письмо с инструкциями, откуда скачать RetroShare) + &Отправить приглашение через провайдеров веб-почты. @@ -3042,7 +2999,7 @@ resources. Please paste below your friend's Retroshare certificate - Пожалуйста, втавьте сертификат контрагента в поле внизу + Пожалуйста, вставьте сертификат другого участника сети в поле внизу @@ -3101,12 +3058,12 @@ resources. Key validity: - Срока действия ключа: + Уровень доверия к ключу: Signers - Подписанты + Подписавшие @@ -3131,7 +3088,7 @@ resources. Invalid local IP. - Неверный местный IP. + Неверный внутренний IP. @@ -3197,7 +3154,7 @@ resources. Peer id - ID участника + Идентификатор участника @@ -3220,31 +3177,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Предупреждение: в настройках передачи файлов вы разрешили прямую загрузку. Warning: In your File-Transfer option, you select allow direct download to No. - + Предупреждение: в настройках передачи файлов вы запретили прямую загрузку. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + Это же ваш собственный сертификат! Вы не хотели бы соединиться с самим собой, не так ли? This key is already on your trusted list - + Этот ключ уже находится в вашем доверенном списке You have already signed this key - + Вы уже подписали этот ключ @@ -3333,7 +3290,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - Сертификат RetroShare (*.rsc ); Все файлы (*) + Сертификат RetroShare (*.rsc );;Все файлы (*) @@ -3420,7 +3377,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - Нижеследующий текст – это ваш сертификат RetroShare. Для установления соединения вам следует передать его вашему контрагенту + Нижеследующий текст – это ваш сертификат RetroShare. Для установления соединения вам следует передать его действующему участнику тёмной сети. @@ -3455,7 +3412,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key is already in your keyring - Это ключ уже в Вашей связке + Это ключ уже в вашей связке @@ -3482,7 +3439,7 @@ even if you don't make friends. Auto-download recommended files - Авто загрузка рекомендованных файлов + Автозагрузка рекомендованных файлов @@ -3503,12 +3460,12 @@ even if you don't make friends. No IP in this certificate! - Нет IP в этом сертификате! + В этом сертификате отсутствует IP-адрес! <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>Этот сертификат не имеет IP. Вам нужно рассчитывать на обнаружение и DHT, чтобы найти его. Поскольку вам требуется разрешение белого списка, пир вызовет предупреждение системы безопасности в закладке Новостей. Там, вы можете добавить его IP в белый список.</p> + Этот сертификат не содержит в себе IP-адреса. В данном случае для установления соединения с узлом ваш клиент задействует сервис обнаружения и распределённую таблицу хешей DHT. Поскольку вам требуется разрешение белого списка, подключение к участнику вызовет предупреждение системы безопасности во вкладке новостей. Оттуда вы можете добавить его IP-адрес в белый список. @@ -3523,7 +3480,7 @@ even if you don't make friends. Certificate Load Failed:can't read from file %1 - Ошибка загрузки сертификата: не удается прочитать файл %1 + Ошибка загрузки сертификата: не удаётся прочитать файл %1 @@ -3556,7 +3513,7 @@ even if you don't make friends. Net Result - Сетевой Результат + Сетевой результат @@ -3605,13 +3562,21 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lucida Grande'; font-size:13pt;">Данный виджет показывает ход вашего подключения к вашему новому партнеру.</span></p> +<p 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;">Это полезно для решения проблем.</span></p> +<p style="-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;"><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:'Lucida Grande'; font-size:13pt;">Если вы являетесь опытным пользователем RS или уверены, что RS будет делать всё правильно,</span></p> +<p 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;">то можете закрыть его.</span></p></body></html> @@ -3621,7 +3586,7 @@ p, li { white-space: pre-wrap; } Invalid Peer ID - Неверный ID участника + Неверный идентификатор участника @@ -3631,7 +3596,7 @@ p, li { white-space: pre-wrap; } Offline - нет сети + Не в сети @@ -3732,7 +3697,7 @@ p, li { white-space: pre-wrap; } Initial connections can take a while, please be patient - Если соединение с этим узлом устанавливается впервые, то этот процесс может занять длительное время. В связи с этим, необходимо набраться терпения и подождать. Напомним: хотя бы у одного из вас должен быть проброшен порт, о чём будет свидетельствовать индикатор NAT зелёного цвета в строке состояния. Если же у вас обоих NAT «жёлтый» или даже «красный», соединение навряд ли установится. + Если соединение с узлом устанавливается впервые, то процесс может занять длительное время. В связи с этим, необходимо набраться терпения и подождать. Напомним: хотя бы у одного из вас должен быть "проброшен" порт, о чём будет свидетельствовать индикатор NAT зелёного цвета в строке состояния. Если же у вас обоих NAT "жёлтый" или даже "красный", соединение вряд ли установится. @@ -3849,7 +3814,7 @@ p, li { white-space: pre-wrap; } - You are not connected to the Internet - – вы не подключены к Интернету + – вы не подключены к интернету @@ -3885,7 +3850,7 @@ p, li { white-space: pre-wrap; } Peer Denied Connection - Участник отказал в соединении. + Участник отказал в соединении @@ -3943,7 +3908,7 @@ p, li { white-space: pre-wrap; } You have previously connected to this Friend - Вы уже соединены с этим узлом. + Вы уже соединены с этим узлом @@ -3958,7 +3923,7 @@ p, li { white-space: pre-wrap; } Try importing a fresh Certificate to get up-to-date connection information - Попробуйте импортировать свежий сертификат, чтобы получить обновленную информацию о соединении + Попробуйте импортировать свежий сертификат, чтобы получить обновлённую информацию о соединении @@ -3975,26 +3940,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Пожалуйста, повторите попытку импорта полного сертификата. - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;">Этот виджет показывает процесс вашего подключения к новому узлу.</span></p> -<p 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;">Здесь будет указываться информация, полезная при решении проблем.</span></p> -<p style="-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;">Если вы опытный пользователь тёмной сети или же знаете, что не сможете сделать для соединения больше и лучше, чем 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:'Lucida Grande'; font-size:13pt;"> то можете закрыть его.</span></p></body></html> - @@ -4057,12 +4002,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>Имя круга, контакты автора и список приглашённых будут видны всем приглашённым участникам. Если круг не является приватным, он также будет виден соседним узлам, на которых размещаются приглашённые члены.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + <html><head/><body><p>Создатель круга является совершенно необязательным. Однако это полезно для публичных кругов, чтобы люди знали, с кем обсуждать аспекты членства.</p></body></html> @@ -4072,7 +4017,7 @@ p, li { white-space: pre-wrap; } IDs - IDs + Идентификаторы @@ -4082,7 +4027,7 @@ p, li { white-space: pre-wrap; } Nickname - Ник + Псевдоним @@ -4103,7 +4048,7 @@ p, li { white-space: pre-wrap; } ID - ID + Идентификатор @@ -4115,19 +4060,11 @@ p, li { white-space: pre-wrap; } Name: Имя: - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - <html><head/><body><p>Название круга, его автор и список приглашённых участников будет доступен всем приглашённым пользователям. Если круг не является приватным, он будет виден всем узлам, которые соседствуют с пользователем-участником круга .</p></body></html> - Contact author: Идентификатор автора: - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - <html><head/><body><p>Указание авторства круга не является обязательным. Это может оказаться полезным в том случае, когда кто-то пожелает присоединиться к кругу, прислав запрос его инициатору.</p></body></html> - [Circle Admin] @@ -4136,7 +4073,7 @@ p, li { white-space: pre-wrap; } Distribution: - Доступность: + Распространение: @@ -4151,7 +4088,7 @@ p, li { white-space: pre-wrap; } Private - приватная + Приватный @@ -4161,7 +4098,7 @@ p, li { white-space: pre-wrap; } Only visible to members of: - видим только членам круга: + Видим только членам круга: @@ -4193,13 +4130,13 @@ p, li { white-space: pre-wrap; } Remove - Удалить + Удалить Search - Поиск + Поиск @@ -4231,7 +4168,7 @@ p, li { white-space: pre-wrap; } Anon Id - Анонимный Id + Анонимный идентификатор @@ -4262,7 +4199,7 @@ p, li { white-space: pre-wrap; } PGP Linked Id - ID, привязанный к PGP-ключу + Идентификатор, привязанный к PGP-ключу @@ -4291,12 +4228,12 @@ p, li { white-space: pre-wrap; } Group ID: - ID группы + ID группы: Enter a name for your group - Введите имя для группы + Введите имя группы @@ -4326,7 +4263,7 @@ p, li { white-space: pre-wrap; } Channel Post - Сообщение + Сообщение канала @@ -4338,17 +4275,17 @@ 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:'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"> <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;">Вложения:</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;"> Используйте кнопку Перетащить и Отпустить / Добавить Файлы, чтобы захешировать новые файлы.</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;"> Копируйте / Вставьте RetroShare ссылки от ваших файлов</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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Используйте кнопку "Перетащить и Отпустить / Добавить файлы", чтобы хешировать новые файлы.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Копируйте / вставьте ссылки RetroShare ваших файлов</span></p></body></html> @@ -4410,12 +4347,12 @@ p, li { white-space: pre-wrap; } Directory can't be dropped, only files are accepted. - Директория не может быть прикреплена таким образом, только файлы допустимы. + Папка не может быть прикреплена таким образом, допустимы только файлы. File not found or file name not accepted. - Файл не найден или недопустимое имя файла + Файл не найден или недопустимое имя файла. @@ -4462,7 +4399,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Редактировать сообщение канала @@ -4521,12 +4458,12 @@ p, li { white-space: pre-wrap; } Edit Message - + Редактировать сообщение No Forum - Нет Форума + Нет форума @@ -4548,18 +4485,19 @@ p, li { white-space: pre-wrap; } Please choose Signing Id, it is required - Пожалуйства, выберите ID подписанта, требуется + Пожалуйста, выберите идентификатор подписавшего, это требуется Cancel Forum Message - + Отменить сообщение на форуме Forum Message has not been sent yet! Do you want to discard this message? - + Сообщение ещё не отправлено на форум! +Вы хотите его удалить? @@ -4569,12 +4507,12 @@ Do you want to discard this message? No compatible ID for this forum - Нет совместимого ID для этого форума + Нет совместимого идентификатора для этого форума None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - Ни один из ваших идентификаторов не имеет прав для отправки сообщений в этот форум. Возможно доступ к форуму ограничен кругом в котором вы не состоите, или форум требует наличие подписанного ID. + Ни один из ваших идентификаторов не имеет прав для отправки сообщений в этот форум. Возможно, доступ к форуму ограничен кругом, в котором вы не состоите, или форум требует наличие подписанного идентификатора. @@ -4592,16 +4530,6 @@ Do you want to discard this message? Send Отправить - - Forum Message - Сообщение в форуме - - - Forum Message has not been Sent. -Do you want to reject this message? - Сообщение не отправлено в форум. -Отменить отправку? - Post as @@ -4610,7 +4538,7 @@ Do you want to reject this message? Congrats, you found a bug! - Поздравляю, вы нашли ошибку! + Поздравляем, вы нашли ошибку! @@ -4618,17 +4546,17 @@ Do you want to reject this message? Create Chat Lobby - Создать Комнату чата + Создать чат-комнату 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. - Комната чата – децентрализованная и анонимная чат-группа. Все участники публично отправляют и принимают сообщения друг друга. После создания комнаты чата вы можете пригласить туда других участников из своего окружения, воспользовавшись кнопокой вверху справа с подсказкой «Пригласить участников в эту чат-комнату» + Комната чата – децентрализованная и анонимная чат-группа. Все участники публично отправляют и принимают сообщения друг друга. После создания комнаты чата вы можете пригласить туда других участников из своего окружения, воспользовавшись кнопкой вверху справа с подсказкой «Пригласить участников в эту чат-комнату» Lobby name: - Имя Комнаты: + Имя комнаты: @@ -4638,22 +4566,22 @@ Do you want to reject this message? Visibility: - Видимость + Видимость: Public (Visible by friends) - Публичный чат (будет доступен участникам из моего окуржения) + Публичный чат (будет доступен участникам из моего окружения) Private (Works on invitation only) - Приватная (только по приглашениям) + Приватный чат (только по приглашениям) <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> + <html><head/><body><p>Если вы отметите это, только подписанные участники смогут общаться в этой комнате. Это ограничение предотвращает спам от имени анонимных участников и делает возможным или, по меньшей мере, определить узел спаммера.</p></body></html> @@ -4716,7 +4644,7 @@ Do you want to reject this message? Location: - Расположение: + Местоположение: @@ -4726,12 +4654,12 @@ Do you want to reject this message? Software Version: - Версия программы + Версия программы: Online since: - Подключен с: + Подключён с: @@ -4776,7 +4704,7 @@ Do you want to reject this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - Ваш публичный ключ скопирован в буфер обмена, теперь вы можете вставить его в письмо и отправить его вашему другу по электронной почте или каким-нибудь другим путём. + Ваш публичный ключ скопирован в буфер обмена, теперь вы можете вставить его в письмо и отправить его вашему контакту по электронной почте или каким-нибудь другим способом. @@ -4786,7 +4714,7 @@ Do you want to reject this message? RetroShare Certificate (*.rsc );;All Files (*) - Сертификат RetroShare (*.rsc ); Все файлы (*) + Сертификат RetroShare (*.rsc );;Все файлы (*) @@ -4796,7 +4724,7 @@ Do you want to reject this message? PGP fingerprint: - PGP отпечаток + PGP-отпечаток: @@ -4806,7 +4734,7 @@ Do you want to reject this message? PGP Id : - PGP-идентификатор + PGP-идентификатор: @@ -4857,7 +4785,7 @@ 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> - <p>RetroShare использует DHT сети BitTorrent в качестве вспомогательной службы для установления соединений. В DHT не хранится ваш IP-адрес. DHT используется участниками из вашего окружения для установления соединения через стандартные DHT-запросы. Индикатор статуса DHT станет зелёным сразу же, как только RetroShare получит DHT-ответ от одного из ваших контактов.</p> + <p>RetroShare использует DHT-сеть BitTorrent в качестве вспомогательной службы для установления соединений. В DHT не хранится ваш IP-адрес. DHT используется участниками из вашего окружения для установления соединения через стандартные DHT-запросы. Индикатор статуса DHT станет зелёным сразу же, как только RetroShare получит DHT-ответ от одного из ваших контактов.</p> @@ -4878,12 +4806,12 @@ Do you want to reject this message? DHT Good - DHT впорядке + DHT в порядке No peer found in DHT - Не найдено пиров в DHT + Участник не найден в DHT @@ -4911,17 +4839,17 @@ Do you want to reject this message? Faster - Быстрее + Быстрый Average - Норма + Средний Slower - Медленнее + Медленный @@ -4964,7 +4892,7 @@ Do you want to reject this message? retroshare link(s) - ссылки RetroShare + Ссылки RetroShare @@ -5017,12 +4945,12 @@ Do you want to reject this message? Nat Hole - NAT hole + Окно в NAT Peer Address - Адрес узла + Адрес участника @@ -5032,7 +4960,7 @@ Do you want to reject this message? PeerId - Идентификатор пира + Идентификатор участника @@ -5062,12 +4990,12 @@ Do you want to reject this message? Cb Status - Статус DHT + Состояние Cb RsId - RetroShare-идентификатор + Идентификатор RetroShare @@ -5178,12 +5106,12 @@ Do you want to reject this message? External IP - Внешний IP. + Внешний IP UNKNOWN NAT STATE - Неизвестное состояние преобразователя сетевых адресов + СОСТОЯНИЕ NAT НЕ ОПРЕДЕЛЕНО @@ -5193,7 +5121,7 @@ Do you want to reject this message? DETERMINISTIC SYM NAT - ДЕТЕРМИНИСТИЧЕСКИЙ СИММЕТРИЧНЫЙ NAT + ДЕТЕРМИНИСТИЧЕСКИЙ СИММЕТРИЧНЫЙ NAT @@ -5243,32 +5171,32 @@ Do you want to reject this message? NET BAD: Unknown State - ПЛОХАЯ СЕТЬ: Неизвестное Состояние + ПЛОХАЯ СЕТЬ: неизвестное состояние NET BAD: Offline - ПЛОХАЯ СЕТЬ: Вне сети + ПЛОХАЯ СЕТЬ: вне сети NET BAD: Behind Symmetric NAT - ПЛОХАЯ СЕТЬ: За симметричным NAT + ПЛОХАЯ СЕТЬ: за симметричным NAT NET BAD: Behind NAT & No DHT - Плохая сеть: непрозрачный NAT и нет DHT + Плохая сеть: непрозрачный NAT, DHT не работает NET WARNING: NET Restart - ПРЕДУПРЕЖДЕНИЕ СЕТИ: Перезагрузка СЕТИ + ПРЕДУПРЕЖДЕНИЕ СЕТИ: перезагрузка сети NET WARNING: Behind NAT - ПРЕДУПРЕЖДЕНИЕ СЕТИ: За NAT + ПРЕДУПРЕЖДЕНИЕ СЕТИ: за NAT @@ -5293,7 +5221,7 @@ Do you want to reject this message? Not Active (Maybe Connected!) - Не активно (может быть подключен!) + Не активен (вероятно, уже подключен) @@ -5333,7 +5261,7 @@ Do you want to reject this message? Disconnected - Отключен + Отключён @@ -5348,7 +5276,7 @@ Do you want to reject this message? Request Active - Запрос Активности + Запрос активности @@ -5358,7 +5286,7 @@ Do you want to reject this message? Unknown - Неизвестно + Неизвестное состояние @@ -5390,7 +5318,7 @@ Do you want to reject this message? RELAY PROXY - ТРАНСЛЯТОР ПРОКСИ + Транслятор-прокси @@ -5399,17 +5327,17 @@ Do you want to reject this message? %1 secs ago - %1 сек назад + %1 сек. назад %1B/s - %1Б/с + %1 Б/с Relays - Реле + Трансляторы @@ -5569,7 +5497,7 @@ Do you want to reject this message? ignore case - без учета регистра + без учёта регистра @@ -5614,7 +5542,7 @@ Do you want to reject this message? &New - Новый + &Новый @@ -5624,7 +5552,7 @@ Do you want to reject this message? &Edit - Правка + &Изменить @@ -5634,7 +5562,7 @@ Do you want to reject this message? &Remove - Удалить + &Удалить @@ -5692,7 +5620,7 @@ Do you want to reject this message? File name - Имя файла: + Имя файла @@ -5852,7 +5780,7 @@ Do you want to reject this message? # Files - + # файлов @@ -5882,12 +5810,12 @@ Do you want to reject this message? Column %1 - + Столбец %1 Row %1 - + Строка %1 @@ -5907,14 +5835,10 @@ Do you want to reject this message? Expand new messages Развернуть новые сообщения - - Forum - Форум - Load embedded images - Загрузить внедренные изображения + Загрузить внедрённые изображения @@ -5939,7 +5863,7 @@ Do you want to reject this message? Forums - Форумы + Форумы @@ -5947,13 +5871,13 @@ Do you want to reject this message? Last Contact - Посл. контакт + Последний контакт ID - + Идентификатор @@ -6042,7 +5966,7 @@ Do you want to reject this message? Search ID - Искомый ID + Поиск идентификатора @@ -6118,7 +6042,7 @@ Do you want to reject this message? Done! - Готово + Готово! @@ -6152,14 +6076,14 @@ Do you want to reject this message? at least one peer was not added -как минимум один пир не добавлен +как минимум один участник не добавлен at least one peer was not added to a group -как минимум один пир не добавлен в группу +как минимум один участник не добавлен в группу @@ -6175,7 +6099,7 @@ at least one peer was not added to a group XML File (*.xml);;All Files (*) - XML-файлы(*.xml);;Все файлы (*) + XML-файлы (*.xml);;Все файлы (*) @@ -6183,10 +6107,6 @@ at least one peer was not added to a group Error Ошибка - - Failed to get a file! - Не удалось получить файл! - File is not writeable! @@ -6229,7 +6149,7 @@ at least one peer was not added to a group Node - Узел сети + Узел @@ -6310,7 +6230,7 @@ at least one peer was not added to a group Unknown (Incoming) Connect Attempt - Неизвестная (входящая) Попытка соединения + Неизвестная (входящая) попытка соединения @@ -6328,7 +6248,7 @@ at least one peer was not added to a group Filter only connected - + Только подключённые @@ -6424,7 +6344,7 @@ at least one peer was not added to a group Deletes all stored and displayed chat history - Удаляет всю сохраненную и отображаемую историю чата + Удаляет всю сохранённую и отображаемую историю чата @@ -6489,15 +6409,7 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters - Все обязательный поля должны быть длиной минимум 3 символа - - - Password (check) - Пароль (еще раз) - - - [Required] Type the same password again here. - [Обязательно] Введите пароль еще раз + Все поля должны обязательно быть заполнены текстом, состоящим из не менее 3 символов @@ -6512,7 +6424,7 @@ at least one peer was not added to a group Use BOB - + Использовать BOB @@ -6520,68 +6432,30 @@ at least one peer was not added to a group This password is for PGP Данный пароль предназначен для PGP - - Generate new node - Генерация нового узла - You can use it now to create a new node. Теперь вы можете создать новый узел. - - Invalid hidden node - Недопустимый скрытый узел - Node field is required with a minimum of 3 characters Поле для местоположения должно быть длиной минимум 3 символа - - Generating new node key, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. - -Fill in your password when asked, to sign your new key. - Создаётся PGP-ключ нового узла. Эта процедура требует генерации очень больших простых чисел и на слабых машинах может занять длительное время, поэтому наберитесь терпения. - -Чтобы подписать новый ключ, вам понадобится ввести пароль. - Failed to generate your new certificate, maybe PGP password is wrong! Не удалось создать ваш новый сертификат. Может быть, введён неправильный пароль PGP! - - <html><head/><body><p>Use this if you need to import an existing profile, if you want to generate a new node with an already existing key, or if you want to create a TOR/I2P hidden node.</p></body></html> - <html><head/><body><p>Используйте это, если вы желаете импортировать существующий профиль, равно как и создать новый узел, используя существующий ключ, или чтобы создать скрытый узел TOR/I2P.</p></body></html> - - - 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 на различных компьютерах, используя один и тот же профиль. Чтобы это сделать, экспортируйте исходный профиль, импортируйте его на другом компьютере и создайте новый узел на основе этого сертификата. - - - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - Похоже, что у вас нет никакого профиля (PGP ключи). Пожалуйста, заполните форму ниже, чтобы создать или импортировать существующий профиль. - - - No node exists for this profile. - Отсутствует созданный узел для этого профиля. - Options - Параметры + Параметры PGP Key Length - + Длина ключа PGP @@ -6612,7 +6486,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Use existing profile - + Использовать существующий профиль @@ -6629,31 +6503,11 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Export this profle Экспортировать профиль - - Re-use an existing profile - Использовать существующий профиль - - - Profile name - Имя профиля - - - Randomness - Степень случайности - - - Node type - Тип узла - <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> <html><head/><body><p>Здесь следует указать onion-адрес наподобие: xa76giaf6ifda7ri63i263.onion <br/>, или же i2p-адрес в форме: [52 символа].b32.i2p </p><p>Для того, чтобы получить такие адреса, вам необходимо сконфигурировать скрытые или Tor-, или i2p-сервисы/серверы. В случае, если у вас нет ни того, ни другого, вы можете пропустить этот шаг и вернуться к настройкам позднее через конфигурационную панель RetroShare: Настройки → Сеть → Настройка скрытых сервисов.</p></body></html> - - Chat identity - Личность в чате - <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> @@ -6667,7 +6521,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p TextLabel - Текстовая метка + Текстовая метка @@ -6683,32 +6537,18 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - Ваш профиль связан с парой ключей PGP. В настоящее время RetroShare игнорирует DSA ключи. + Ваш профиль связан с парой ключей PGP. В настоящее время RetroShare игнорирует DSA-ключи. <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>Это ваш порт подключения</p> <p>Любое значение от 1024 до 65535</p> <p>допустимо. Вы можете изменить его позже.</p></body></html> - - PGP key length - Длина ключа PGP - Click to create your node and/or profile Нажмите, чтобы создать узел и/или профиль - - Generate new profile and node - Создать новый профиль и узел - - - 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. Для продолжения необходимо создать профиль и связать с ним узел. В целях осуществлени этой процедуры, пожалуйста, заполните нижеследующую форму. -В качестве альтернативы вы можете импортировать профиль (ранее экспортированный). Просто снимите флажок «Создать новый профиль» - Export profile @@ -6731,11 +6571,11 @@ It is encrypted You can now copy it to another computer and use the import button to load it - Ваш профиль был успешно сохранен + Ваш профиль был успешно сохранён Он зашифрован Теперь можно скопировать его на другой компьютер -и использовать кнопку Импорт, чтобы загрузить его +и использовать кнопку "Импорт", чтобы загрузить его @@ -6745,7 +6585,7 @@ and use the import button to load it Your profile was not saved. An error occurred. - Ваш профиль не был сохранен. Произошла ошибка. + Ваш профиль не был сохранён. Произошла ошибка. @@ -6753,26 +6593,6 @@ and use the import button to load it Import profile Импортировать профиль - - [Required] Examples: Home, Laptop,...(Visible to friends). - [требуется] Примеры: home, laptop, лес, космос, ... (будет доступно контактам из окружения) - - - [Optional] Tor/I2P address (Example: xa76giaf6ifda7ri63i263.onion) - [необязательно] Скрытый адрес сервиса Tor или i2p (пример: xa76giaf6ifda7ri63i263.onion) - - - [Required] Visible to friends, and friends of friends. - [требуется] Виден вашим контактам и ближнему окружению - - - [Optional] Used to write in chat rooms and forums. Can be set later. - [необязательно] Используется в чатах, форумах, каналах и т.д. Можно создать позднее - - - [Required] This password protects your data. Dont forget it! - [требуется] Данный пароль защищает все ваши данные. Не утеряйте его! - Create new profile and new Retroshare node @@ -6783,59 +6603,55 @@ and use the import button to load it Create new Retroshare node Создать новый узел RetroShare - - Disabled until all fields correctly set and enough randomness collected. - Деактивировано до тех пор, пока не будут заполнены все необходимые поля и не будет собрано достаточно случайных данных. - Tor/I2P address - + Адрес Tor/I2P Username - + Имя пользователя Chat name - + Имя чата Password again - + Повтор пароля <p>Node creation is disabled until all fields correctly set.</p> - + <p>Создание узла отключено до тех пор, пока не будут правильно заданы все поля.</p> <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + <p>Создание узла отключено, пока не будет собрано достаточное количество случайных чисел. Пожалуйста, перемещайте мышь по кругу, пока не будет достигнуто по крайней мере 20%.</p> I2P instance address with BOB enabled - + Адрес экземпляра I2P с включённым BOB I2P instance address - + Адрес экземпляра I2P hidden service address - + адрес скрытой службы RetroShare profile files (*.asc);;All files (*) - Файлы профиля RetroShare (*.asc);; Все файлы (*) + Файлы профиля RetroShare (*.asc);;Все файлы (*) @@ -6867,22 +6683,18 @@ and use the import button to load it The GXS nickname is too long. Please reduce the length to %1 characters. Псевдоним является слишком длинным. Пожалуйста, уменьшите его длину до %1 символов. - - 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 - Ошибка генерации пары ключей PGP + Ошибка при создании пары ключей PGP Profile generation failure - Ошибка генерации профиля + Ошибка при создании профиля @@ -6905,12 +6717,12 @@ and use the import button to load it Start minimized - Запускать свернутым + Запускать свёрнутым Start minimized on system start - Запускать свернутым при запуске системы + Запускать свёрнутым при запуске системы @@ -6920,7 +6732,7 @@ and use the import button to load it Enable Advanced Mode (Restart Required) - Включить продвинутый режим (потребуется перезапуск) + Включить расширенный режим (потребуется перезапуск) @@ -6940,12 +6752,12 @@ and use the import button to load it Register retroshare:// as URL protocol - Заргеистрировать retroshare:// как URI протокол + Зарегистрировать «retroshare://» как URL-протокол You need administrator rights to change this option. - Нужно быть администратором чтобы изменить эту опцию. + Нужно быть администратором, чтобы изменить эту функцию. @@ -6960,12 +6772,12 @@ and use the import button to load it <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - <html><head/><body><p>Установить RetroShare с помощью установщика пакетов, чтобы создать</p><p>/usr/share/applications/retroshare.desktop</p></body></html> + <html><head/><body><p>Установите RetroShare с помощью пакетного менеджера, чтобы сформировать</p><p>/usr/share/applications/retroshare.desktop</p></body></html> !!!The RetroShare's desktop file is missing or wrong!!! - !!!Ярлык RetroShare отсутствует или поврежден!!! + !!!Ярлык RetroShare отсутствует или повреждён!!! @@ -6980,25 +6792,17 @@ and use the import button to load it seconds - секунды - - - You have enough right. - У вас достаточно прав. - - - You don't have enough right. Run RetroShare as Admin to change this setting. - У вас недостаточно прав. Запустите RetroShare от имени администратора для изменения этих настроек. + сек. You have sufficient rights. - + У вас достаточно полномочий. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + У вас недостаточно полномочий. Запустите RetroShare от имение администратора, чтобы изменить этот параметр. @@ -7056,7 +6860,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7084,28 +6888,12 @@ p, li { white-space: pre-wrap; } Add 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;">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;">Когда ваши друзья отправляют вам приглашения, нажмите для открытия окна «Добавить узлы в окружение».</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Вставьте &quot;сертификаты&quot; ваших контрагентов в окно и добавьте их.</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> @@ -7138,14 +6926,14 @@ 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: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"> @@ -7167,7 +6955,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:'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> @@ -7207,16 +6995,22 @@ 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: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 Friends' &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;">Вставьте &quot;сертификаты&quot; в окне и добавьте их как доверенные узлы.</span></p></body></html> Advanced: Open Firewall Port - Продвинутая опция: открыть порт файрвола. + Дополнительная настройка: открыть порт межсетевого экрана @@ -7231,17 +7025,17 @@ p, li { white-space: pre-wrap; } Open FAQ Wiki - Открыть Faq Wiki + Открыть FAQ Wiki Open Online Forums - Открыть Форумы + Открыть форумы Email Support - Написать в ТехПоддержку + Написать в тех. поддержку @@ -7256,7 +7050,7 @@ p, li { white-space: pre-wrap; } Your friend has installed RetroShare, and would like you to try it out. - Ваш друг установил RetroShare и хотел бы, чтобы Вы тоже опробовали эту файлообменную и коммуникационную платформу, ориентированную на предельную анонимность и приватность. + Ваш знакомый установил RetroShare и хотел бы, чтобы Вы тоже опробовали эту файлообменную и коммуникационную платформу, ориентированную на предельную анонимность и приватность. @@ -7271,12 +7065,12 @@ p, li { white-space: pre-wrap; } forums and channels, all of which are as secure as the file-sharing. - форумы и каналы, все они также защищены как и файлообмен. + форумы и каналы, равно как и файлообмен, очень надёжно защищены как от прослушки, так и от деанонимизации вашей деятельности. Here is your friends ID Certificate. - Здесь представлены ID сертификатов других участников сети. + Здесь представлены идентификаторы сертификатов других участников сети. @@ -7286,7 +7080,7 @@ p, li { white-space: pre-wrap; } and send them your ID Certificate to get securely connected. - и пошлите им ваш ID сертификата для безопасного соединения. + и пошлите им ваш идентификатор сертификата для безопасного соединения. @@ -7349,12 +7143,12 @@ p, li { white-space: pre-wrap; } Stored data size - Размер сохраненных данных + Размер сохранённых данных Receive time (secs ago) - Время получения (просшло секунд) + Время получения (прошло секунд) @@ -7379,7 +7173,7 @@ p, li { white-space: pre-wrap; } Unknown Peer - Неизвестный пир + Неизвестный участник @@ -7407,12 +7201,12 @@ p, li { white-space: pre-wrap; } [Unknown identity] - [Неизвестный идентификатор] + [неизвестный идентификатор] : Service ID = - : ID Службы = + : идентификатор службы = @@ -7428,7 +7222,7 @@ p, li { white-space: pre-wrap; } [Unknown] - [Неизвестный] + [неизвестно] @@ -7436,7 +7230,7 @@ p, li { white-space: pre-wrap; } Friends - Узлы сети + Посторонние @@ -7643,11 +7437,7 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - - - - Sort by Posts - Сортировать по сообщениям + Сортировать по количеству сообщений @@ -7657,7 +7447,7 @@ p, li { white-space: pre-wrap; } You are admin (modify names and description using Edit menu) - Вы администратор (изменяйте название и описание используя меню Редактировать) + Вы администратор (изменяйте название и описание используя меню "Редактировать") @@ -7830,7 +7620,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - Выберите каталог канала для загрузки + Выберите папку загрузки для канала @@ -7840,7 +7630,7 @@ p, li { white-space: pre-wrap; } Set download directory - Выберите каталог загрузки + Выберите папку загрузки @@ -7889,7 +7679,7 @@ p, li { white-space: pre-wrap; } Waiting - ожидание + Ожидание @@ -7945,7 +7735,7 @@ p, li { white-space: pre-wrap; } Create New Channel - Создать Новый Канал + Создать новый канал @@ -7955,22 +7745,22 @@ p, li { white-space: pre-wrap; } Edit Channel - Редактировать Канал + Редактировать канал Add Channel Admins - Добавить Администратора Канала + Добавить администратора канала Select Channel Admins - Выбрать админа канала + Выбрать администратора канала Update Channel - Обновить Канал + Обновить канал @@ -8022,12 +7812,12 @@ p, li { white-space: pre-wrap; } New Comment: - Новый Коментарий + Новый комментарий: Comment Value - Значение Коментария + Значение комментария @@ -8054,7 +7844,7 @@ p, li { white-space: pre-wrap; } Edit - Правка + Изменить @@ -8070,7 +7860,7 @@ p, li { white-space: pre-wrap; } Expand - Раскрыть + Развернуть @@ -8090,12 +7880,12 @@ p, li { white-space: pre-wrap; } Files - Файлы + файлов Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - Внимание! У вас есть менее %1 часов and %2 минут прежде чем файл будет удален. Рассмотрите возможность его сохранения. + Внимание! У вас есть менее %1 часов и %2 минут, прежде чем файл будет удалён. Рассмотрите возможность его сохранения. @@ -8136,7 +7926,7 @@ p, li { white-space: pre-wrap; } Comments - + Комментарии @@ -8151,7 +7941,7 @@ p, li { white-space: pre-wrap; } Play Media - Проиграть медиа-файл + Проиграть медиафайл @@ -8165,7 +7955,7 @@ p, li { white-space: pre-wrap; } Add new post - + Добавить новое сообщение @@ -8276,7 +8066,7 @@ p, li { white-space: pre-wrap; } unknown - Неизвестно + неизвестно @@ -8291,7 +8081,7 @@ p, li { white-space: pre-wrap; } Files - Файлы + файлов @@ -8314,7 +8104,7 @@ p, li { white-space: pre-wrap; } Channel Post - Сообщение + Сообщение канала @@ -8322,48 +8112,48 @@ p, li { white-space: pre-wrap; } Details - Подробности + Подробности Remove Item - + Удалить объект for identity - для идентификатора + для личности You received a membership request for circle: - + Вы получили запрос на членство в круге: Grant membership request - + Удовлетворить запрос на членство Revoke membership request - + Отказать в запросе на членство You received an invitation for circle: - + Вы получили приглашение в круг: Accept invitation - + Принять приглашение Received event from unknown Circle: - + Получено событие неизвестного круга: @@ -8371,7 +8161,7 @@ p, li { white-space: pre-wrap; } Comment Container - Контейнер Комментарий + Контейнер комментариев @@ -8399,7 +8189,7 @@ p, li { white-space: pre-wrap; } Voter ID: - ID голосующих: + Идентификаторы голосующих: @@ -8429,12 +8219,12 @@ p, li { white-space: pre-wrap; } UpVotes - Голоса За + Голоса "За" DownVotes - Голоса Против + Голоса "Против" @@ -8447,17 +8237,17 @@ p, li { white-space: pre-wrap; } Reply to Comment - Ответ на Комментарий + Ответ на комментарий Submit Comment - Отправить Комментарий + Отправить комментарий Copy Comment - + Копировать комментарий @@ -8475,14 +8265,14 @@ p, li { white-space: pre-wrap; } Make 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8498,14 +8288,14 @@ p, li { white-space: pre-wrap; } Comment Signing Error - Ошибка Подписания Комментария + Ошибка подписания комментария You need to create an Identity before you can comment - Вам нужно создать личность -прежде чем вы сможете комментировать + Вам нужно создать личность прежде, +чем вы сможете комментировать @@ -8513,7 +8303,7 @@ before you can comment Create New Forum - Создать Новый Форум + Создать новый форум @@ -8523,22 +8313,22 @@ before you can comment Edit Forum - Редактировать Форум + Редактировать форум Update Forum - Обновление Форума + Обновить форум Add Forum Admins - Добавить Администраторов Форума + Добавить администраторов форума Select Forum Admins - Выберите Администраторов Форума + Выбрать администраторов форума @@ -8660,7 +8450,7 @@ before you can comment New Thread - Новая Тема + Новая тема @@ -8835,17 +8625,17 @@ before you can comment Restricted to members of circle " - ограничено для членов круга " + Ограничено для членов круга " Restricted to members of circle - Ограничено для членов круга + Ограничено для членов круга Only friends nodes in group - Только узлы контактов в группе + Только узлы контактов в группе @@ -8857,7 +8647,7 @@ before you can comment Distribution - Распределение + Распространение @@ -8892,7 +8682,7 @@ 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> + <p><font color="#ff0000"><b>Автор этого сообщения (личность %1) заблокирован.</b> @@ -8907,7 +8697,7 @@ before you can comment <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> + <p><b><font color="#ff0000">Вы можете принудительно включить видимость и отправку сообщений, выбрав другое отношение в этой личности на вкладке "Участники".</font></b></p> @@ -8933,14 +8723,14 @@ before you can comment You cant reply to a non-existant Message - Вы не можете ответить на не существующее Сообщение + Вы не можете ответить на не существующее сообщение You cant reply to an Anonymous Author - Вы не можете ответить Анонимному Автору + Вы не можете ответить анонимному автору @@ -8950,7 +8740,7 @@ before you can comment New thread - + Новая тема @@ -8960,7 +8750,7 @@ before you can comment Edit - Правка + Изменить @@ -8996,7 +8786,7 @@ before you can comment Show author in people tab - Показать этот идентификатор во вкладке «Участники» + Показать этот идентификатор на вкладке "Участники" @@ -9062,12 +8852,12 @@ prevents the message to be forwarded to your friends. (Latest) - + (Последнее) (Old) - + (Старое) @@ -9092,7 +8882,7 @@ prevents the message to be forwarded to your friends. On %1, %2 wrote: - На %1 %2 написал + %1 %2 написал(а): @@ -9196,7 +8986,7 @@ prevents the message to be forwarded to your friends. Add Icon - Добавить иконку + Добавить значок @@ -9206,12 +8996,12 @@ prevents the message to be forwarded to your friends. Share Publish Key - Общедоступный Публичный Ключ + Поделиться публичным ключом check peers you would like to share private publish key with - проверить пиры с которыми вы хотите поделиться приватным ключом + проверить участников, с которыми вы хотите поделиться приватным ключом @@ -9227,11 +9017,7 @@ prevents the message to be forwarded to your friends. Message Distribution - Распределение Сообщений - - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - <html><head/><body><p>Контент будет распространяться далеко за пределы вашего доверенного окружения по мере того, как участники сети будут подписываться на каналы/форумы/публикации, созданные вами. Иначе говоря, хорошие каналы/форумы/публикации будут видимы далеко, а плохие «заглохнут» в пределах доверенного окружения.</p></body></html> + Распространение сообщений @@ -9239,11 +9025,7 @@ prevents the message to be forwarded to your friends. Public - Публичный - - - Only For Your Friends - Только для вашего доверенного окружения + Публичные @@ -9258,7 +9040,7 @@ prevents the message to be forwarded to your friends. New Thread - Новая Тема + Новая тема @@ -9278,17 +9060,17 @@ prevents the message to be forwarded to your friends. PGP Required - Требуется PGP + Требуется PGP Signature Required - Требуется Подпись + Требуется подпись If No Publish Signature - Если нет Публичной Подписи + Если нет публичной подписи @@ -9298,7 +9080,7 @@ prevents the message to be forwarded to your friends. Allow Comments - Комментарии Разрешены + Комментарии разрешены @@ -9330,7 +9112,7 @@ prevents the message to be forwarded to your friends. Anti Spam: - Анти-Спам: + Анти-спам: @@ -9346,7 +9128,7 @@ prevents the message to be forwarded to your friends. Limited to your friends - Ограничено вашим доверенным окружением + Ограничено вашими доверенными узлами @@ -9369,7 +9151,7 @@ prevents the message to be forwarded to your friends. PGP signature required - Необходима PGP подпись + Необходима PGP-подпись @@ -9389,23 +9171,23 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - Необходима PGP подпись от известного ID + Необходима PGP-подпись от известного идентификатора Load Group Logo - Загрузить Логотип Группы + Загрузить логотип группы Submit Group Changes - Отправить Изменения Группы + Отправить изменения группы Failed to Prepare Group MetaData - please Review - Не удалось Подготовить Метаданные Группы - пожалуйста Проверьте + Не удалось подготовить метаданные группы - пожалуйста, проверьте @@ -9430,7 +9212,7 @@ prevents the message to be forwarded to your friends. ID - ID + Идентификатор @@ -9440,7 +9222,7 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Сообщения будут распространяться далеко за пределы вашего доверенного окружения до тех пор, пока кто-нибудь подписан на созданный вами канал/форум/публикацию.</p></body></html> @@ -9460,7 +9242,7 @@ prevents the message to be forwarded to your friends. Restricted node group - + Ограничено группой узла @@ -9480,12 +9262,12 @@ prevents the message to be forwarded to your friends. Defavor unsigned IDs - Запретить неподписанные ID + Запретить неподписанные идентификаторы Defavor unsigned IDs and IDs from unknown nodes - Запретить неподписанные и неизвестные ID + Запретить неподписанные и неизвестные идентификаторы @@ -9505,7 +9287,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - GxsIdLabel + Идентификатор Gxs @@ -9548,12 +9330,12 @@ prevents the message to be forwarded to your friends. Show Details - Показать Подробности + Показать подробности Edit Details - Редактировать Подробности + Редактировать подробности @@ -9620,12 +9402,12 @@ prevents the message to be forwarded to your friends. Mark all as read - Отметить все как прочитанные + Отметить всё как прочитанное Mark all as unread - Отметить все как непрочитанные + Отметить всё как непрочитанное @@ -9689,7 +9471,7 @@ prevents the message to be forwarded to your friends. Identity&nbsp;name - Имя&nbsp;личности + Имя&nbsp;личности @@ -9704,7 +9486,7 @@ prevents the message to be forwarded to your friends. [Unknown] - [Неизвестный] + [неизвестный] @@ -9725,107 +9507,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Статистика роутера + Статистика роутера GroupBox - Группы + Группы ID - + Идентификатор Destination - Назначение + Назначение Data status - Состояние данных + Состояние данных Data size - + Размер данных Data hash - Хэш данных + Хэш данных Sending time (secs ago) - Время отправки (прошло секунд) + Время отправки (прошло секунд) Group ID - + Идентификатор группы Gxs Transport Groups: - + Группы Gxs-транспорта: Group ID / Author - + Идентификатор группы / автор Number of messages / Publish TS - + Количество сообщений / Время публикации Local size of data - + Локальный размер данных Subscribed - Подписка + Подписанный Popularity - Популярность + Популярность Details - Подробности + Подробности Unknown Peer - Неизвестный пир + Неизвестный участник Pending data items - + Ожидание элементов данных Unknown - Неизвестно + Неизвестно Yes - Да + Да No - Нет + Нет @@ -9838,7 +9620,7 @@ prevents the message to be forwarded to your friends. Tunnel ID: %1 - ID туннеля: %1 + Идентификатор туннеля: %1 @@ -9858,7 +9640,7 @@ prevents the message to be forwarded to your friends. total sent: %1 bytes - всего отправленно: %1 байт + всего отправлено: %1 байт @@ -9868,7 +9650,7 @@ prevents the message to be forwarded to your friends. Unknown Peer - Неизвестный пир + Неизвестный участник @@ -9882,12 +9664,12 @@ prevents the message to be forwarded to your friends. Directory can't be dropped, only files are accepted. - Директория не может быть прикреплена таким образом, только файлы допустимы. + Папка не может быть прикреплена таким образом, допустимы только файлы. File not found or file name not accepted. - Файл не найден или недопустимое имя файла + Файл не найден или имеет недопустимое имя. @@ -9896,7 +9678,7 @@ prevents the message to be forwarded to your friends. RetroShare Help - RetroShare помощь + Помощь по RetroShare @@ -9906,7 +9688,7 @@ prevents the message to be forwarded to your friends. Find Previous - Найти предыдущее + Искать предыдущее @@ -9916,12 +9698,12 @@ prevents the message to be forwarded to your friends. Case sensitive - Регистрозависимость + Учитывать регистр Whole words only - Все слова + Слова целиком @@ -9957,7 +9739,7 @@ prevents the message to be forwarded to your friends. Move to previous page (Backspace) - Вернуться на предыдущую страницу(Backspace) + Вернуться на предыдущую страницу (Backspace) @@ -9967,17 +9749,17 @@ prevents the message to be forwarded to your friends. Forward - Вперед + Вперёд Move to next page (Shift+Backspace) - Перейти на следующую страницу (Shift + Backspace) + Перейти на следующую страницу (Shift+Backspace) Shift+Backspace - Shift + Backspace + Shift+Backspace @@ -9987,7 +9769,7 @@ prevents the message to be forwarded to your friends. Move to the Home page (Ctrl+H) - Вернуться на главную страницу(Ctrl+H) + Вернуться на главную страницу (Ctrl+H) @@ -10004,12 +9786,12 @@ prevents the message to be forwarded to your friends. Search for a word or phrase on current page (Ctrl+F) - Искать слово или фразу на текущей странице(Ctrl+F) + Искать слово или фразу на текущей странице (Ctrl+F) Ctrl+F - Ctrl + F + Ctrl+F @@ -10029,7 +9811,7 @@ prevents the message to be forwarded to your friends. Supplied XML file is not a valid Contents document. - Существующий XML-файл имеет неверный формат + Существующий XML-файл имеет неверный формат. @@ -10070,19 +9852,19 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10100,7 +9882,7 @@ p, li { white-space: pre-wrap; } <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> +<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 разработчиков RetroShare</a></li></ul></body></html> @@ -10122,16 +9904,16 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10187,7 +9969,7 @@ p, li { white-space: pre-wrap; } Do you want Retroshare to open the link in your Web browser? - Хотите чтобы RetroShare открыл ссылку в Вашем браузере? + Хотите, чтобы RetroShare открыл ссылку в вашем браузере? @@ -10197,7 +9979,7 @@ p, li { white-space: pre-wrap; } 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 не удалось открыть данную ссылку в вашем браузере. Вы можете скопировать URL и вставить ее в адресную строку браузера. + RetroShare не удалось открыть данную ссылку в вашем браузере. Вы можете скопировать URL и вставить её в адресную строку браузера. @@ -10215,7 +9997,7 @@ p, li { white-space: pre-wrap; } Did you receive a certificate from a friend? - У вас уже есть сертификат контрагента? + У вас уже есть сертификат другого участника тёмной сети? @@ -10247,7 +10029,7 @@ p, li { white-space: pre-wrap; } Open Source cross-platform, private and secure decentralized communication platform. - Анонимная, приватная децентрализованная + Анонимная приватная децентрализованная коммуникационная и файлообменная платформа @@ -10259,7 +10041,7 @@ private and secure decentralized communication platform. Do you need help with RetroShare? - + Вам нужна помощь по RetroShare? @@ -10294,11 +10076,7 @@ private and secure decentralized communication platform. <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>The first thing you have to do is to <b>make friends</b>. Once you create a network of Retroshare nodes, or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, use the current page to exchange certificates with other persons you want your Retroshare node to connect to.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to meet other people anonymously.</p> - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Добро пожаловать в тёмную сеть RetroShare!</h1> <p>Первое, что Вам необходимо сделать, это подключиться к <b>существующим участникам сети</b>. После того, как Вы создадите сеть RetroShare, состоящую из нескольких узлов, или присоединитесь к существующей сети, у Вас появится возможность осуществлять файлообмен, общаться в чатах или форумах, публиковать собственный контент в каналах и многое другое. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>Для достижения этой цели воспользуйтесь представленной здесь информацией, которая призвана помочь Вам осуществить обмен сертификатами с определёнными или произвольными узлами тёмной сети.</p> <p>Ещё одна возможность – это поискать в Интернете информацию по запросу "чат-серверы RetroShare" (или "RetroShare chat servers"). Подобные чат-серверы, развёрнутые независимыми участниками сети, позволят Вам обменяться сертификатом с существующим узлом приватной сети RetroShare и зайти в один или несколько чатов. Уже в чатах Вы легко сможете расширить личное сетевое окружение путём обмена сертификатами с действующими участниками сети.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Добро пожаловать в Retroshare!</h1> <p>Вам нужно <b>добавить доверенные узлы</b>! После добавления доверенных узлов или присоединения к существующей сети, вы сможете обмениваться файлами, общаться в чате, на форумах и т. д. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>Для этого скопируйте свой сертификат с этой страницы и отправьте его своим контактам, а также добавьте их сертификаты.</p> <p>Другой вариант — найти в интернете "чат-серверы Retroshare" (независимо от администрирования). Эти серверы позволяют обмениваться сертификатами с выделенным узлом Retroshare, через который вы сможете анонимно встречаться с другими людьми.</p> @@ -10318,7 +10096,7 @@ private and secure decentralized communication platform. RetroShare Certificate (*.rsc );;All Files (*) - Сертификат RetroShare (*.rsc ); Все файлы (*) + Сертификат RetroShare (*.rsc );;Все файлы (*) @@ -10349,8 +10127,8 @@ private and secure decentralized communication platform. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </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"> @@ -10362,7 +10140,7 @@ p, li { white-space: pre-wrap; } Owner node ID : - ID владельца узла: + Идентификатор владельца узла: @@ -10382,17 +10160,17 @@ p, li { white-space: pre-wrap; } Identity ID : - ID личности: + Идентификатор личности: Last used: - Последний использованный: + Последний раз замечен: Ban-option: - Бан-опция: + Блокировка: @@ -10439,7 +10217,7 @@ p, li { white-space: pre-wrap; } Negative - Отрицательно + Отрицательное мнение @@ -10456,12 +10234,12 @@ p, li { white-space: pre-wrap; } <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> + <html><head/><body><p>Средняя репутация, основанная на вашем мнении и мнении ваших контактов.</p><p>Отрицательное значение — плохая репутация, положительное — хорошая, ноль — нейтральная. Если значение слишком низкое,</p><p>личность будет помечена как плохая и отфильтрована в форумах, чатах,</p><p>каналах и т.п.</p></body></html> Overall: - Общая: + Итого: @@ -10471,7 +10249,7 @@ p, li { white-space: pre-wrap; } Unknown real name - Неизвестное имя + Настоящее имя неизвестно @@ -10481,12 +10259,12 @@ p, li { white-space: pre-wrap; } Identity owned by you, linked to your Retroshare node - Личность закреплена за Вами и привязана к Вашему узлу RetroShare + Личность закреплена за вами и привязана к вашему узлу RetroShare Anonymous identity, owned by you - Анонимная личность, закреплённая за Вами + Анонимная личность, закреплённая за вами @@ -10521,7 +10299,7 @@ p, li { white-space: pre-wrap; } +5 Anon Id - +5 Анонимных Id + +5 анонимных идентификаторов @@ -10580,7 +10358,7 @@ p, li { white-space: pre-wrap; } All - Все + Все участники @@ -10605,12 +10383,12 @@ p, li { white-space: pre-wrap; } Create new circle - Создать новы круг + Создать новый круг Persons - Участники + Действия над участниками @@ -10630,25 +10408,7 @@ p, li { white-space: pre-wrap; } Ban-option: - Бан-опция: - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">Ваше личное мнение об участнике определяет видимость сообщений, им созданных, как вами, так всем вашим окружением. Ваша оценка передаётся каждому из доверенного окружения и используется для подсчёта значения репутации участника. Если ваше мнение нейтрально, значение репутации определяется как среднее арифметическое значений, полученных от вашего окружения. Если ваше мнение отлично от нейтрального, значение репутации становится равным вашему мнению.</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Окончательное значение репутации участника используется в чат-комнатах, форумах и каналах для того, чтобы клиент-сервер определил стоит ли передавать сообщение от определённого идентификатора вашему окружению. Если интегральное значение репутации меньше -0.6, личность заносится в бан-лист, что атвоматически предотвращает передачу сообщений участника в форумы/каналы. Следует отметить, что некоторые форумы могут иметь специальные антиспам-флаги, требующие более высокого уровня репутации участника для трансляции сообщений через ваш узел. Можно сказать, что такие каналы или форумы более остро реагируют на дурную репутацию той или иной личности. Заблокированные участники постепенно теряют свою активность и со временем вообще исчезают из списка участников (по истечении 30 дней). </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> + Блокировка: @@ -10701,12 +10461,12 @@ p, li { white-space: pre-wrap; } Public Circles - Публичные Круги + Публичные круги Personal Circles - Личные Круги + Личные круги @@ -10722,22 +10482,22 @@ p, li { white-space: pre-wrap; } Chat with this peer - Чат с этим пиром + Чат с этим участником Launches a distant chat with this peer - Запустить удаленный чат с этим пиром + Запустить удалённый чат с этим участником Owner node ID : - ID владельца узла : + Идентификатор владельца узла: Identity name : - Псевдоним : + Псевдоним: @@ -10747,7 +10507,7 @@ p, li { white-space: pre-wrap; } Identity ID - ID Личности + Идентификатор личности @@ -10762,12 +10522,12 @@ p, li { white-space: pre-wrap; } Identity ID : - ID личности : + Идентификатор личности: Owner node name : - Имя владельца узла : + Имя владельца узла: @@ -10787,7 +10547,7 @@ 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>Среднее мнение об этой личности с соседних нод. Отрицательное — плохо</p><p>Положительное — хорошо. Ноль нейтрален. <p></body></html> + <html><head/><body><p>Среднее мнение об этой личности с соседних узлов. Отрицательное — плохо</p><p>Положительное — хорошо. Ноль нейтрален. <p></body></html> @@ -10799,65 +10559,73 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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;">Ваше собственное мнение о личности определяет видимость этой личности для вас самих и ваших доверенных узлов. Ваше мнение передаётся доверенным узлам и используется для вычисления оценки репутации: если ваше мнение о личности нейтрально, оценка репутации — это разница между положительными и отрицательными мнениями ваших контактов, а если нет, то оценку определяет ваше мнение.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Общий балл используется в чатах, форумах и каналах, чтобы определить действия, которые необходимо предпринять в отношении каждой конкретной личности. Когда общий балл меньше -1, личность блокируется, что предотвращает пересылку всех ею созданных сообщений и форумов/каналов, в обоих направлениях. Некоторые форумы также имеют специальные флаги для защиты от нежелательной почты, которые требуют не отрицательного уровня репутации, что делает их более чувствительными к плохим мнениям. Заблокированные личности постепенно теряют свою активность и в конечном итоге исчезают (через 5 дней).</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="-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> - <html><head/><body><p>Интегральное значение репутации, основанное на вашем мнении и мнении ваших контактов.</p><p>Отрицательное значение — плохая репутация, положительное — хорошая, ноль — нейтральная. Если значение слишком низкое,</p><p>личность будет помечена как плохая и отфильтрована в форумах, чатах</p><p>каналах, etc.</p></body></html> + <html><head/><body><p>Интегральное значение репутации, основанное на вашем мнении и мнении ваших контактов.</p><p>Отрицательное значение — плохая репутация, положительное — хорошая, ноль — нейтральная. Если значение слишком низкое,</p><p>личность будет помечена как плохая и отфильтрована в форумах, чатах,</p><p>каналах и т.п.</p></body></html> Overall: - Общая: + Общая: Anonymous - Аноним + Анонимные участники ID - ID + Идентификатор Search ID - Искомый ID + Поиск идентификатора This identity is owned by you - Эта личность закреплена за Вами + Эта личность закреплена за вами My own identities - Мои идентификаторы + Личности, созданные мною @@ -10877,7 +10645,7 @@ p, li { white-space: pre-wrap; } Linked to my node - Связанные с моей нодой + Личности, привязанные к моему узлу @@ -10892,12 +10660,12 @@ p, li { white-space: pre-wrap; } Circle ID: - ID круга: + Идентификатор круга: Visibility: - Видимость: + Видимость: @@ -10917,56 +10685,52 @@ p, li { white-space: pre-wrap; } Your role: - Ваша роль: + Ваша роль: Administrator (Can edit invite list, and request membership). - Администратор (Может редактировать лист приглашений и запросов членства). + Администратор (может редактировать лист приглашений и запросов членства). User (Can only request membership). - Пользователь (Может запросить членство). + Пользователь (может запросить членство). Distribution: - Распространение: + Распространение: subscribed (Receive/forward membership requests from others and invite list). - подписан (получает/передает запросы членства от других). + подписанный (получает/передаёт запросы членства от других). unsubscribed (Only receive invite list). - неподписанный (получает только праглашения). + неподписанный (только получает приглашения). Your status: - Ваш статус: + Ваш статус: Full member (you have access to data limited to this circle) - Полноценный член (вы имеете доступ к данным достпным этому кругу) + Полноценный член (вы имеете доступ к данным доступным этому кругу) Not a member (do not have access to data limited to this circle) Не член (нет доступа к данным доступным кругу) - - Unknown ID : - Незивестный ID : - Identity ID: - ID идентификатора: + Идентификатор личности: @@ -10981,7 +10745,7 @@ p, li { white-space: pre-wrap; } Invited by admin - Пригглашен администратором + Приглашён администратором @@ -10991,12 +10755,12 @@ p, li { white-space: pre-wrap; } unknown - Неизвестно + неизвестно Invited - Приглашен + Приглашён @@ -11011,12 +10775,12 @@ p, li { white-space: pre-wrap; } Edit Circle - Редактировать Круг + Редактировать круг See details - Смотреть детали + Смотреть подробности @@ -11026,7 +10790,7 @@ p, li { white-space: pre-wrap; } Accept circle invitation - ПРинять приглашение в круг + Принять приглашение в круг @@ -11044,7 +10808,7 @@ p, li { white-space: pre-wrap; } for identity - для идентификатора + для личности @@ -11059,7 +10823,7 @@ p, li { white-space: pre-wrap; } -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. @@ -11071,39 +10835,39 @@ These identities will soon be not supported anymore. [Unknown node] - [Неизвестная нода] + [неизвестный узел] Unverified signature from node - Неподтвержденная подпись от ноды + Неподтверждённая подпись от узла Unchecked signature - Нероверенная подпись + Непроверенная подпись [unverified] - [неподтверждено] + [не подтверждено] Identity owned by you, linked to your Retroshare node - Личность закреплена за Вами и привязана к Вашему узлу RetroShare + Личность закреплена за вами и привязана к вашему узлу RetroShare Identity owned by you, linked to your Retroshare node but not yet validated - + Личность закреплена за вами и привязана к вашему узлу RetroShare, но ещё не проверена Anonymous identity, owned by you - Анонимная личность, закреплённая за Вами + Анонимная личность, закреплённая за вами @@ -11113,23 +10877,23 @@ These identities will soon be not supported anymore. Message in chat room %1 - + Сообщение в чат-комнате %1 information - + информация This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Ссылка личности была скопирована в буфер обмена. Вставьте её в электронную почту или в сообщение для передачи кому-либо. Copy identity to clipboard - + Скопировать личность в буфер обмена @@ -11144,27 +10908,27 @@ These identities will soon be not supported anymore. Banned - Заблокировано + Заблокированные участники <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>В этой вкладке вы имеете возможность создавать/редактировать <b>аномниные и псевдонимные личности</b>, а также <b>круги</b>.</p> <p><b>Личности</b> используются для безопасной публикации сообщений: от имени личностей вы посылаете сообщения в чаты, форумы и каналы, получаете отклики через встроенный в Retroshare почтовый сервис, публикуете комментарии в каналах, чатах. От имени личностей в определённых случаях прокладываются анонимные туннели и т. п.</p> <p>Личности не обязательно должны быть <b>подписаны</b> вашим личным сертификатом. Подписанные личности иногда полезны, если вы хотите подчеркнуть авторство того или иного сообщения. Однако по подписанным личностям зачастую можно отследить IP-адрес автора сообщения.</p> <p><b>Анонимные личности</b> позволяют вам анонимно, а значит – безопасно, взаимодействовать с другими участниками тёмной сети. Анонимные личности не могут быть подменены, но никто не может однозначно обозначить привязку анонимной личности к конкретному сертификату, а значит – и пользователю.</p> <p><b>Круги</b> – это совокупность личностей (анонимных или подписанных), информация о которых широко распространяется по тёмной сети. Круги используются для создания форумов и каналов, содержимое которых доступно только участникам конкретного круга </p> <p><b>Один круг</b> может быть ограничен другим кругом, как следствие, определяя видимость его участников определённому множеству участников, принадлежащему другому кругу. Есть возможность создавать самый приватный тип кругов, где информация о них доступна только членам самого круга, читайте – закрытого клуба.</p> <p><b>Локальный круг</b> есть совокупность доверенных узлов, представленных их PGP-идентификаторами, и широко используемых для ограничения доступности каналов и форумов. Такого рода круги не распространяются по сети и список его членов доступен только вам.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Личности</h1> <p>В этой вкладке вы имеете возможность создавать/редактировать <b>анонимные и псевдонимные личности</b>, а также <b>круги</b>.</p> <p><b>Личности</b> используются для безопасной публикации сообщений: от имени личностей вы посылаете сообщения в чаты, форумы и каналы, получаете отклики через встроенный в RetroShare почтовый сервис, публикуете комментарии в каналах, чатах. От имени личностей в определённых случаях прокладываются анонимные туннели и т. п.</p> <p>Личности не обязательно должны быть <b>подписаны</b> вашим личным сертификатом. Подписанные личности иногда полезны, если вы хотите подчеркнуть авторство того или иного сообщения. Однако по подписанным личностям зачастую можно отследить IP-адрес автора сообщения.</p> <p><b>Анонимные личности</b> позволяют вам анонимно, а значит – безопасно, взаимодействовать с другими участниками тёмной сети. Анонимные личности не могут быть подменены, но никто не может однозначно обозначить привязку анонимной личности к конкретному сертификату, а значит – и пользователю.</p> <p><b>Круги</b> – это совокупность личностей (анонимных или подписанных), информация о которых широко распространяется по тёмной сети. Круги используются для создания форумов и каналов, содержимое которых доступно только участникам конкретного круга </p> <p><b>Один круг</b> может быть ограничен другим кругом, как следствие, определяя видимость его участников определённому множеству участников, принадлежащему другому кругу. Есть возможность создавать самый приватный тип кругов, где информация о них доступна только членам самого круга, читайте – закрытого клуба.</p> <p><b>Локальный круг</b> есть совокупность доверенных узлов, представленных их PGP-идентификаторами, и широко используемых для ограничения доступности каналов и форумов. Такого рода круги не распространяются по сети и список его членов доступен только вам.</p> Unknown ID: - + Неизвестный идентификатор: positive - положительно + положительно negative - отрицательно + отрицательно @@ -11246,14 +11010,10 @@ These identities will soon be not supported anymore. %1 in %2 tab %1 во вкладке %2 - - Message in chat lobby %1 - Сообщение в чат-комнате %1 - Distant message signature validation. - Проверка подлинности сигнатуры удалённого сообщения + Проверка подлинности подписи удалённого сообщения @@ -11263,17 +11023,17 @@ These identities will soon be not supported anymore. Signature validation in distant tunnel system. - Проверка подлинности сигнатуры через систему удалённого туннелирования + Проверка подлинности подписи через систему удалённого туннелирования Signature in distant tunnel system. - Сигнатура в системе удалённого туннелирования + Подпись в системе удалённого туннелирования Update of identity data. - Обновить данные личности + обновление данных о личности. @@ -11288,12 +11048,12 @@ These identities will soon be not supported anymore. Generic encryption. - Базовое шифрование + Базовое шифрование. Generic decryption. - Базовое дешифрование + Базовое дешифрование. @@ -11352,22 +11112,22 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - Ваш аватар + Нажмите здесь, чтобы изменить свой аватар Linked to neighbor nodes - Привязан к вашему доверенному + Личности, привязанные к ближнему окружению Linked to distant nodes - Привязан к удалённому узлу + Личности, привязанные к удалённому узлу Linked to a friend Retroshare node - Привязан к вашему доверенному узлу + Личности, привязанные к доверенному окружению @@ -11397,7 +11157,7 @@ These identities will soon be not supported anymore. Last used: - Последний использованный: + Последний раз появлялся: @@ -11412,7 +11172,7 @@ These identities will soon be not supported anymore. +5 Anon Id - +5 Анонимных Id + +5 анонимных идентификаторов @@ -11422,7 +11182,7 @@ These identities will soon be not supported anymore. Owned by - Принадлежит ... + Принадлежит... @@ -11432,7 +11192,7 @@ These identities will soon be not supported anymore. Node Id : - ID узла: + Идентификатор узла: @@ -11445,12 +11205,12 @@ These identities will soon be not supported anymore. Nickname - Ник + Псевдоним Key ID - ID Ключа + Идентификатор ключа @@ -11460,12 +11220,12 @@ These identities will soon be not supported anymore. PGP Hash - PGP Хэш + Хэш PGP PGP Id - PGP Id + Идентификатор PGP @@ -11510,12 +11270,12 @@ These identities will soon be not supported anymore. Error KeyID invalid - Ошибка недействительный ID ключа + Ошибка: недействительный идентификатор ключа Unknown GpgId - Неизвестный GpgId + Неизвестный идентификатор GPG @@ -11560,7 +11320,7 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - Ваш аватар + Нажмите здесь, чтобы изменить аватар @@ -11570,7 +11330,7 @@ These identities will soon be not supported anymore. Linked to your profile - Привязан к вашему профилю + Привязан к моему профилю @@ -11598,12 +11358,12 @@ These identities will soon be not supported anymore. KeyId - Id ключа + Идентификатор ключа GXSId - GXS ID + Идентификатор GXS @@ -11628,12 +11388,12 @@ These identities will soon be not supported anymore. GXS id: - GXS id: + Идентификатор GXS: PGP id: - PGP id: + Идентификатор PGP: @@ -11658,7 +11418,7 @@ These identities will soon be not supported anymore. Mark all - Отметить все + Отметить всё @@ -11687,7 +11447,7 @@ These identities will soon be not supported anymore. Cannot save the image, invalid filename - Невозможно сохранить изображение, не верное имя файла + Невозможно сохранить изображение, неверное имя файла @@ -11711,7 +11471,7 @@ These identities will soon be not supported anymore. Checking... - Проверка ... + Проверка... @@ -11721,21 +11481,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Рекомендовать в сообщении для... Share on channel... - + Поделиться на канале... Share on forum... - - - - Recommend in a message to - Рекомендуем в сообщении для + Поделиться на форуме... @@ -11801,12 +11557,12 @@ These identities will soon be not supported anymore. RetroShare %1 a secure decentralized communication platform - RetroShare %1 безопасная децентрализованная коммуникационная платформа + RetroShare %1 — безопасная децентрализованная коммуникационная платформа Unfinished - Еще не готово + Ещё не готово @@ -11824,7 +11580,7 @@ These identities will soon be not supported anymore. RetroShare безопасно приостановит доступ диска к этой папке. -Пожалуйста, освободите немного дискового пространства и нажмите Ok. +Пожалуйста, освободите немного дискового пространства и нажмите "OK". @@ -11844,7 +11600,7 @@ RetroShare безопасно приостановит доступ диска Open Messenger - Открыть Мессенджер + Открыть мессенджер @@ -11864,7 +11620,7 @@ RetroShare безопасно приостановит доступ диска Help - Help + Помощь @@ -11879,7 +11635,7 @@ RetroShare безопасно приостановит доступ диска &Quit - Выход + В&ыход @@ -11944,7 +11700,7 @@ RetroShare безопасно приостановит доступ диска Don't ask me again - Не спрашивайте меня снова + Не спрашивать меня снова @@ -11954,7 +11710,7 @@ RetroShare безопасно приостановит доступ диска The file link is malformed. - Неправильная ссылка на файл + Неправильная ссылка на файл. @@ -12084,7 +11840,7 @@ RetroShare безопасно приостановит доступ диска Underline - Подчеркнутый + Подчёркнутый @@ -12094,13 +11850,13 @@ RetroShare безопасно приостановит доступ диска Tags: - Теги: + Метки: Tags - Тэги + Метки @@ -12225,7 +11981,7 @@ RetroShare безопасно приостановит доступ диска All people - Все люди + Все участники @@ -12278,17 +12034,17 @@ Do you want to save message to draft box? Add to "To" - Добавить к "Кому" + Добавить к "кому" Add to "CC" - Добавить к "Копия" + Добавить к "копии" Add to "BCC" - Добавить к "Невидимая копия" + Добавить к "невидимой копии" @@ -12332,7 +12088,7 @@ Do you want to save message to draft box? On %1, %2 wrote: - На %1 %2 написал + %1 %2 написал(а): @@ -12491,7 +12247,7 @@ Do you want to save message to draft box? HTML-Files (*.htm *.html);;All Files (*) - HTML-файлы(*.htm *.html);;Все файлы (*) + HTML-файлы (*.htm *.html);;Все файлы (*) @@ -12523,7 +12279,7 @@ Do you want to save message ? Image Files supported (*.png *.jpeg *.jpg *.gif) - Поддерживаются типы файлов (*.png *.jpeg *.jpg *.gif) + Поддерживаемые типы файлов (*.png *.jpeg *.jpg *.gif) @@ -12533,7 +12289,7 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - Привет, <br>Есть предложение обменяться сертификатами друг с другом. Не возражаешь?<br> + Привет, <br>Есть предложение обменяться сертификатами друг с другом. Не возражаете?<br> @@ -12583,22 +12339,22 @@ Do you want to save message ? Ordered list (alpha lower) - Отсортированный список (альфа ниже) + Отсортированный список (по алфавиту по возрастанию) Ordered list (alpha upper) - Отсортированный список (альфа выше) + Отсортированный список (по алфавиту по убыванию) Ordered list (roman lower) - Отсортированный список (Римский ниже) + Отсортированный список (в римской системе по возрастанию) Ordered list (roman upper) - Отсортированный список (Римский выше) + Отсортированный список (в римской системе по убыванию) @@ -12624,7 +12380,7 @@ Do you want to save message ? Node name & id: - Имя & id узла: + Имя и идентификатор узла: @@ -12647,7 +12403,7 @@ Do you want to save message ? Accept encrypted distant messages from - Принимать зашифрованное сообщение от + Принимать зашифрованное сообщение от @@ -12667,7 +12423,7 @@ Do you want to save message ? Tags - Тэги + Метки @@ -12682,7 +12438,7 @@ Do you want to save message ? Edit - Правка + Изменить @@ -12707,11 +12463,7 @@ Do you want to save message ? Edit Tag - Править Tag - - - Message - Почтовая служба + Изменить метку @@ -12721,12 +12473,12 @@ Do you want to save message ? Load embedded images - Загрузить внедренные изображения + Загрузить внедрённые изображения Mail - Почта + Почта @@ -12785,7 +12537,7 @@ Do you want to save message ? Tags: - Теги: + Метки: @@ -12845,13 +12597,13 @@ Do you want to save message ? Do you really want send a invite with your Certificate? - Отправить приглашение с Вашим сертификатом? + Отправить приглашение с вашим сертификатом? Download all - Скачать все + Скачать всё @@ -12866,7 +12618,7 @@ Do you want to save message ? HTML-Files (*.htm *.html);;All Files (*) - HTML-файлы(*.htm *.html);;Все файлы (*) + HTML-файлы (*.htm *.html);;Все файлы (*) @@ -12889,7 +12641,7 @@ Do you want to save message ? New Message - Новое сообщение + Новое сообщение @@ -12924,7 +12676,7 @@ Do you want to save message ? Forward - Вперед + Вперёд @@ -12957,7 +12709,7 @@ Do you want to save message ? Tags - Тэги + Метки @@ -13091,7 +12843,7 @@ Do you want to save message ? Tags - Тэги + Метки @@ -13107,7 +12859,7 @@ Do you want to save message ? Outbox - Исходящие + Исходящие @@ -13245,7 +12997,7 @@ Do you want to save message ? Click to sort by from - Сортировка по полю "От" + Сортировка по отправителю @@ -13255,7 +13007,7 @@ Do you want to save message ? Click to sort by tags - Сортировка по тегам + Сортировка по меткам @@ -13275,7 +13027,7 @@ Do you want to save message ? Search From - Поиск от кого + Поиск отправителя @@ -13285,12 +13037,12 @@ Do you want to save message ? Search Content - Поиск контента + Поиск по содержанию Search Tags - Поиск тэгов + Поиск меток @@ -13305,7 +13057,7 @@ 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> + <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> @@ -13397,12 +13149,12 @@ Do you want to save message ? Click to sort by to - Сортировка по полю "Кому" + Нажмите, чтобы отсортировать по получателю This message goes to a distant person. - Это сообщение будет отправлено удаленному участнику. + Это сообщение будет отправлено удалённому участнику. @@ -13421,7 +13173,7 @@ Do you want to save message ? Click to sort by signature - Щелкните, чтобы отсортировать по подписи + Нажмите, чтобы отсортировать по подписи @@ -13515,7 +13267,7 @@ Do you want to save message ? Play Media - Проиграть медиа-файл + Проиграть медиафайл @@ -13571,7 +13323,7 @@ Do you want to save message ? Do you really want send a invite with your Certificate? - Отправить приглашение с Вашим сертификатом? + Отправить приглашение с вашим сертификатом? @@ -13584,7 +13336,7 @@ Do you want to save message ? Network Status Unknown - Состояние сети не известно + Состояние сети неизвестно @@ -13599,7 +13351,7 @@ Do you want to save message ? DHT Disabled and Firewalled - DHT отключена и блокируется межсетевым экраном + DHT отключена или блокируется межсетевым экраном @@ -13609,7 +13361,7 @@ Do you want to save message ? Behind Firewall - За файрволлом + За межсетевым экраном @@ -13644,30 +13396,6 @@ Do you want to save message ? Name Имя - - Did I authenticated peer - Подтвердил ли я подлинность пира - - - Did I sign his PGP key - Я подписал его ключом PGP? - - - Profile - Профиль - - - Has signed my key - Участник подписал мой PGP-ключ - - - Cert Id - ID сертификата - - - Last used - Последний используемый - Clear @@ -13731,30 +13459,30 @@ Do you want to save message ? Peer ID - ID пира + Идентификатор участника Remove unused keys... - Удалите неиспользуемые ключи... + Удалить неиспользуемые ключи... Clean keyring - Чистый брелок + Чистый массив ключей - 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. Выбранные ниже ключи не использовались в течение последних 3 месяцев. -Вы хотите удалить их? +Хотите удалить их? -Примечание: Ваш старый брелок будет архивироваться. -При удаление может произойти сбой, если запущено несколько экземпляров Retroshare на одном компьютере. +Примечание: ваша старая связка ключей будет архивироваться. +При удалении может произойти сбой, если на одном компьютере запущено несколько экземпляров RetroShare. @@ -13781,103 +13509,17 @@ For security, your keyring was previously backed-up to file Cannot delete secret keys - Не удается удалить секретные ключи + Не удаётся удалить секретные ключи Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - Невозможно создать архивный файл. Проверьте права доступа к папке pgp, свободное место на диске и проч. - - - Personal signature - Личная подпись - - - PGP key signed by you - ключ PGP, подписанный вами - - - Marginally trusted peer - Минимально доверенный пир - - - Fully trusted peer - Полное доверие к пиру - - - Untrusted peer - Не доверенный пир - - - Yes - Да - - - No - Нет - - - Last hour - Последний час - - - Today - Сегодня - - - Never - Никогда - - - %1 days ago - %1 дней назад - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - подтвердил вашу подлинность. -Щёлкните правой кнопкой мыши и выберите "Добавить в окружение", чтобы иметь возможность подключиться. - - - yourself - вы сами + Невозможно создать архивный файл. Проверьте права доступа к папке PGP, свободное место на диске и т.п. Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - Несоответствие данных в хранилище ключей. Наиболее вероятно, это ошибка. Пожалуйста, свяжитесь с разработчиками. - - - Has signed your key? - Пописан мною - - - Id - Id - - - Do you accept connections signed by this profile? - Разрешаете ли вы соединения, подписанные этим ключом? - - - Name of the profile - Имя профиля - - - This column indicates trust level and whether you signed the profile PGP key - Этот столбец показывает уровень доверия к ключу, а также факт подписания PGP-ключа данного профиля - - - Did that peer sign your own profile PGP key - Подписал ли этот участник мой PGP-ключ - - - PGP Key Id of that profile - Идентификатор PGP-ключа - - - Last time this key was used (received time, or to check connection) - Последний раз ключ использовался (полученное время или попытка соединения) + Несоответствие данных в хранилище ключей. Вероятнее всего, это ошибка. Пожалуйста, свяжитесь с разработчиками. @@ -13889,10 +13531,6 @@ Right-click and select 'make friend' to be able to connect. Trusted keys only Только доверенные ключи - - Trust level - Уровень доверия - Search name @@ -13901,12 +13539,12 @@ Right-click and select 'make friend' to be able to connect. Search peer ID - Поиск Идентификатора пира + Поиск идентификатора участника Profile details... - Сведения об узле + Сведения о профиле... @@ -13941,7 +13579,7 @@ Reported error: Edge length: - Длина края + Длина ребра: @@ -13954,7 +13592,7 @@ Reported error: New Tag - Новый тег + Новая метка @@ -13969,12 +13607,12 @@ Reported error: OK - OK (Хорошо) + OK Cancel - Вернуться/Отмена + Отмена @@ -13992,7 +13630,7 @@ Reported error: Remove All - Очистить журнал + Очистить всё @@ -14025,7 +13663,7 @@ Reported error: News Feed - Журнал + Лента новостей @@ -14061,7 +13699,7 @@ Reported error: Systray Icon - Иконка в системном трее + Значок в системном трее @@ -14098,7 +13736,7 @@ Reported error: Circles - Круги + Круги @@ -14148,26 +13786,22 @@ Reported error: Count occurrences of my current identity - + Подсчёт нахождений моей текущей личности Count occurrences of any of the following texts (separate by newlines): - + Подсчёт нахождений любых нижеследующих фрагментов текста (каждый с новой строки): Checked, if the identity and the text above occurrences must be in the same case to trigger count. - - - - Checked, if the identity and the text above occurences must be in the same case to trigger count. - Убедитесь, что личность и соответствующий текст сверху отображены в одном регистре + Отметьте, если для подсчёта должны одновременно присутствовать и личность, и текст выше. Case sensitive - Чувствительно к регистру + Учитывать регистр @@ -14197,12 +13831,12 @@ Reported error: Combined - объединить + Объединить Blink - мерцать + Мерцать @@ -14222,12 +13856,12 @@ Reported error: Bottom Left - Левый низ + Левый нижний угол Bottom Right - Правый низ + Правый нижний угол @@ -14257,15 +13891,7 @@ Reported error: Count all unread messages - Подсчет всех непрочитанных сообщений - - - Count occurences of any of the following texts (separate by newlines): - Количество вхождений любого из следующих текстов (отдельно от строки): - - - Count occurences of my current identity - Подсчет вхождений моей текущей личности + Подсчёт всех непрочитанных сообщений @@ -14303,7 +13929,7 @@ Reported error: 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 обнаружил незарегистрированное плагин. Это происходит в двух случаях:<UL><LI>Изменился ваш RetroShare исполняемый файл .</LI><LI>Изменился плагин</LI></UL>Нажмите Да, чтобы разрешить этот плагин или Нет, чтобы его запретить. Вы можете изменить свое решение позже в меню Настройки -> Плагины, затем перезапустите RetroShare. + RetroShare обнаружил незарегистрированное плагин. Это происходит в двух случаях:<UL><LI>Изменился ваш RetroShare исполняемый файл .</LI><LI>Изменился плагин</LI></UL>Нажмите Да, чтобы разрешить этот плагин или Нет, чтобы его запретить. Вы можете изменить своё решение позже в меню Настройки -> Плагины, затем перезапустите RetroShare. @@ -14313,7 +13939,7 @@ Reported error: Examining shared files... - Анализ расшаренных файлов + Проверка файлов, открытых к доступу... @@ -14384,7 +14010,7 @@ Reported error: - 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 @@ -14397,13 +14023,13 @@ Reported error: <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + <p>Предупреждение: данный режим работы отключает службу туннелирования. Это означает, что вы сможете использовать удалённый чат не анонимно, загрузка файлов и почтовый сервис будут работать медленнее.</p><p>Это состояние будет сохранено после перезагрузки, поэтому не забывайте, что вы его изменили!</p> Turtle routing disabled! - + Маршрутизация Turtle отключена! @@ -14446,7 +14072,7 @@ Reported error: Unset - Отключенное + Отключённое @@ -14486,14 +14112,14 @@ 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> - <html><head/><body><p><span style=" font-size:10pt;">Подписание публичного ключа участника сети – это способ обозначить своё доверие тому или иному участнику. Сигнатуры, которые вы видите ниже, подтверждают, что ключи в списке заверены и признаются как подлинные.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Подписание публичного ключа участника сети – это способ обозначить своё доверие тому или иному участнику. Подписи, которые вы видите ниже, подтверждают, что ключи в списке заверены и признаются как подлинные.</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;"> +</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"> @@ -14511,10 +14137,6 @@ p, li { white-space: pre-wrap; } PGP key PGP-ключ - - Below is the node's profile key in PGP ascii format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - Ниже указан PGP-ключ узла. Этот ключ однозначно идентифицирует узел и все его местоположения. Сертификат RetroShare, который может быть использован для установления соединения с другим пользователем тёмной сети, можно найти через контекстное меню местоположения, выбрав пункт «Подробности об узле». Контекстное меню вызывается нажатием правой кнопкой мыши. - These options apply to all nodes of the profile: @@ -14528,7 +14150,7 @@ p, li { white-space: pre-wrap; } Sign PGP key - Подписать PGP ключ + Подписать PGP-ключ @@ -14553,7 +14175,7 @@ p, li { white-space: pre-wrap; } Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + Ниже находится ключ профиля узла в формате PGP ASCII. Он идентифицирует все узлы данного профиля. Сертификат Retroshare, которым вы можете обменяться для добавление в доверенное окружение, находится в разделе "Подробности" каждого отдельного узла. @@ -14588,7 +14210,7 @@ p, li { white-space: pre-wrap; } Auto-download recommended files from this node - Авто-загрузка рекомендованных файлов с этого узла + Автозагрузка файлов, рекомендованных этим узлом @@ -14603,18 +14225,18 @@ p, li { white-space: pre-wrap; } Max upload speed (0=unlimited) - Максимальная скорость отдачи (0 - неограничено) + Максимальная скорость отдачи (0 - неограниченно) Max download speed (0=unlimited) - Максимальная скорость скачивания (0 - неограничено) + Максимальная скорость скачивания (0 - неограниченно) kB/s - kB/s + кБ/с @@ -14635,44 +14257,44 @@ p, li { white-space: pre-wrap; } The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Предоставленный алгоритм ключа не поддерживается RetroShare -(на данный момент поддерживаются только RSA ключей) +(на данный момент поддерживаются только RSA-ключи) Warning: In your File-Transfer option, you select allow direct download to Yes. - + Предупреждение: в настройках файлообмена вы разрешили прямую загрузку. Warning: In your File-Transfer option, you select allow direct download to No. - + Предупреждение: в настройках файлообмена вы запретили прямую загрузку. 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. - Уровень доверия является способом выразить доверие в этом ключе. Он не используется сторонним програмным обеспечением, но может быть полезным для вас, чтобы запомнить хорошие/плохие ключи. + Уровень доверия является способом выразить доверие в этом ключе. Он не используется сторонним программным обеспечением, но может быть полезным для вас, чтобы запомнить хорошие/плохие ключи. Your trust in this peer is ultimate - Ваше доверие этому участнику является окончательным + Ваше доверие этому участнику является окончательным. Your trust in this peer is full. - Ваше доверие к этой совокупности является полным. + Ваше доверие этому участнику является полным. Your trust in this peer is marginal. - Ваше доверие к этой совокупности является маргинальной. + Ваше доверие этому участнику является средним. Your trust in this peer is none. - Ваше доверие к этой совокупности нет. + Ваше доверие этому участнику отсутствует. @@ -14682,7 +14304,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. <p>This PGP key (ID= - <p>Это PGP ключ (ID = + <p>Это PGP-ключ (идентификатор = @@ -14759,7 +14381,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Remove Item - Удалить пункт + Удалить объект @@ -14769,7 +14391,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - ID пира: + Идентификатор участника: @@ -14784,7 +14406,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP Address: - IP адрес: + IP-адрес: @@ -14799,7 +14421,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Смещение времени: @@ -14829,7 +14451,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + Смещение времени у доверенного узла @@ -14847,7 +14469,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - Неизвестный пир + Неизвестный участник @@ -14891,7 +14513,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Drag your circles or people to each other. - Объедините Ваши круги или людей из окружения + Объедините ваши круги или людей из окружения @@ -14916,7 +14538,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Person details - Детали + Подробности о личности @@ -15091,7 +14713,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15104,7 +14726,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15117,7 +14739,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15136,7 +14758,7 @@ p, li { white-space: pre-wrap; } Create Album - Создать Альбом + Создать альбом @@ -15146,7 +14768,7 @@ p, li { white-space: pre-wrap; } Subscribe To Album - Подписаться На Альбом + Подписаться на альбом @@ -15156,22 +14778,22 @@ p, li { white-space: pre-wrap; } My Albums - Мои Альбомы + Мои альбомы Subscribed Albums - Подписанные Альбомы + Подписанные альбомы Shared Albums - Общие Альбомы + Общие альбомы View Photo - Просмотр Фото + Просмотр фото @@ -15232,12 +14854,12 @@ requesting to edit it! Start Slide Show - Начать Слайд-Шоу + Начать слайдшоу Stop Slide Show - Остановить Слайд-Шоу + Остановить слайдшоу @@ -15265,7 +14887,7 @@ requesting to edit it! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15326,7 +14948,7 @@ p, li { white-space: pre-wrap; } will be enabled after your restart RetroShare. - будет включен после перезагрузки вашего RetroShare. + будет включён после перезагрузки вашего RetroShare. @@ -15339,43 +14961,27 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Ошибка: экземпляр %1 не может создать виджет Error: failed to remove file %1 (uninstalling plugin '%2') - + Ошибка: не удалось удалить файл %1 (удаление плагина %2) Error (uninstall): no plugin with name '%1' found - + Ошибка (удаление): не найден плагин с именем %1 Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Ошибка: экземпляр '%1' не может создать виджет + Ошибка (установка): файл плагина %1 не существует Error: no plugin with name '%1' found - Ошибка: не найден плагин с именем '%1' - - - Error(uninstall): no plugin with name '%1' found - Ошибка(удаление): не найден плагин с именем '%1' - - - Error(installation): plugin file %1 doesn't exist - Ошибка(удаление): файл плагина %1 не существует - - - Error: failed to remove file %1(uninstalling plugin '%2') - Ошибка: не удалось переместить файл %1 (деинсталлируем плагин '%2') + Ошибка: плагин с именем '%1' не найден @@ -15388,7 +14994,7 @@ p, li { white-space: pre-wrap; } Install New Plugin... - Установить новый плагин... + Установка нового плагина... @@ -15421,7 +15027,7 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - Плагин отключен. Нажмите кнопку "включить" и перезапустите RetroShare + Плагин отключён. Нажмите кнопку "Включить" и перезапустите RetroShare @@ -15470,7 +15076,7 @@ p, li { white-space: pre-wrap; } Unknown status. - Неизвестное состояние + Неизвестное состояние. @@ -15486,7 +15092,7 @@ 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> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1><p>Плагины загружаются из каталогов, перечисленных в нижней части списка.</p><p>По соображениям безопасности, разрешённые плагины загружаются автоматически до главного исполняемого файла RetroShare или изменения библиотеки плагинов. В таком случае, пользователь должен подтвердить их снова. После запуска программы, вы можете включить плагин вручную, нажав на кнопку "Включить" и перезагрузить RetroShare.</p> <p>Если вы хотите разрабатывать свои собственные плагины, свяжитесь с командой Разработчиков, они будут рады помочь вам!</p> @@ -15513,12 +15119,12 @@ malicious behavior of crafted plugins. Hide Avatar - Скрыть Аватар + Скрыть аватар Show Avatar - Показать Аватар + Показать аватар @@ -15560,33 +15166,25 @@ 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. - Личность, с которой вы разговариваете, удалила безопасный тоннель чата. Теперь вы можете удалить окно чата. - Remote status unknown. - + Удалённый статус неизвестен. Can't send message immediately, because there is no tunnel available. - + Невозможно отправить сообщение немедленно, так как туннель недоступен. The person you are talking to has deleted the secured chat tunnel. - + Собеседник, с которым вы общались, удалил защищённый туннель чата. The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Собеседник удалил защищённый туннель, сообщения будут доставлены как только появится возможность @@ -15598,14 +15196,6 @@ malicious behavior of crafted plugins. Kill the tunnel? Удалить тоннель? - - Can't send message, because there is no tunnel. - Отправить сообщение невозможно, так как не проложен туннель. - - - Can't send message, because the chat partner deleted the secure tunnel. - Отправить сообщение невозможно, так как контрагент удалил защищённый туннель. - PostedCreatePostDialog @@ -15627,17 +15217,17 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - Пожалуйста, сначала создайте или выберите Id Подписанта + Пожалуйста, сначала создайте или выберите идентификатор подписавшего Submit Post - Отправить Сообщение + Отправить сообщение You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - Вы отправляете ссылку. Ключ к успешной презентации - это интересное содержание и информативное название. + Вы отправляете ссылку. Ключ к успешной презентации — это интересное содержание и информативное название. @@ -15652,7 +15242,7 @@ malicious behavior of crafted plugins. Please add a Title - Пожалуйста, добавьте Заголовок + Пожалуйста, добавьте заголовок @@ -15670,7 +15260,7 @@ malicious behavior of crafted plugins. Posted Links - Опубликованные ссылки + Опубликованное @@ -15718,17 +15308,17 @@ malicious behavior of crafted plugins. Add Topic Admins - Добавить Администраторов Темы + Добавить администраторов темы Select Topic Admins - Выберите Администраторов Темы + Выбрать администраторов темы Create New Topic - Создать новый топик + Создать новую тему @@ -15751,7 +15341,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - Подписаться на Ссылки + Подписаться на сообщения @@ -15777,7 +15367,7 @@ malicious behavior of crafted plugins. New Posted - Свежая ссылка + Новые сообщения @@ -15813,12 +15403,12 @@ malicious behavior of crafted plugins. Vote up - Голосовать за + Голосовать "за" Vote down - Голосовать против + Голосовать "против" @@ -15838,12 +15428,12 @@ malicious behavior of crafted plugins. New Comment: - Новый коментарий: + Новый комментарий: Comment Value - Значение Комантария + Значение комментария @@ -15931,7 +15521,7 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - Пожалуйста, создайте или выберите ID подписанта до голосования + Пожалуйста, создайте или выберите идентификатор подписавшего до голосования @@ -15951,10 +15541,6 @@ malicious behavior of crafted plugins. Tabs Вкладки - - Posted - Публикации - Open each topic in a new tab @@ -15963,7 +15549,7 @@ malicious behavior of crafted plugins. Links - Публикации + Публикации @@ -15971,7 +15557,7 @@ malicious behavior of crafted plugins. Posted - Ссылки + Сообщения @@ -15989,7 +15575,7 @@ malicious behavior of crafted plugins. &Print... - Печать... + &Печать... @@ -16009,7 +15595,7 @@ malicious behavior of crafted plugins. &Close - Закрыть + &Закрыть @@ -16025,13 +15611,21 @@ malicious behavior of crafted plugins. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 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"> +<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;">Выберите ключ узла Retroshare из приведённого ниже списка, который будет использоваться на другом компьютере, и нажмите "Экспортировать выбранный ключ".</p> +<p 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;">Чтобы создать новое местоположение на другом компьютере, выберите "Новый профиль/узел" в окне входа в систему. Оттуда вы сможете импортировать файл ключа и создать для него новое местоположение. </p> +<p 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;">Создание нового узла с тем же ключом позволяет доверенным узлам принимать вас автоматически.</p></body></html> @@ -16041,7 +15635,7 @@ p, li { white-space: pre-wrap; } Email - Email + Эл. почта @@ -16052,13 +15646,13 @@ p, li { white-space: pre-wrap; } Export Identity - Экспорт Личности + Экспорт личности RetroShare Identity files (*.asc) - Файлы Личности RetroShare (*.asc) + Файлы личностей RetroShare (*.asc) @@ -16076,7 +15670,7 @@ and use the import button to load it Она зашифрована Вы можете теперь скопировать её на другой компьютер -и нажать кнопку импорт для загрузки +и нажать кнопку "Импорт" для загрузки @@ -16123,30 +15717,10 @@ and use the import button to load it Certificates (*.pqi *.pem) Сертификаты (*.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;"> -<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"> -<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;">Из списка ниже выберите предполагаемый к использованию на другом компьютере ключ узла RetroShare и нажмите &quot;Экспорт выбранного ключа.&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;">Для создания нового местоположения на другом компьютере запустите менеджер личностей в окне входа. Оттуда вы сможете импортировать ваш ключ и создать новое местоположение. </p> -<p 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;">Создание нового местоположения со старой парой ключей позволит вашему доверенному окружению добавить ваш новый узел автоматически.</p></body></html> - Full keys available in your keyring: - Ключи, доступные в Вашем массиве + Ключи, доступные в вашем массиве: @@ -16195,7 +15769,7 @@ p, li { white-space: pre-wrap; } Peer ID: - ID пира: + Идентификатор участника: @@ -16210,7 +15784,7 @@ p, li { white-space: pre-wrap; } Online since: - Подключен с: + Подключён с: @@ -16256,7 +15830,7 @@ p, li { white-space: pre-wrap; } Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Ваш сертификат скопирован в буфер обмена. Вставьте его в письмо и отправьте Вашему другу по электронной почте или воспользуйтесь иным способом. + Ваш сертификат скопирован в буфер обмена. Вставьте его в письмо и отправьте вашему контакту по электронной почте или воспользуйтесь иным способом. @@ -16270,19 +15844,19 @@ p, li { white-space: pre-wrap; } Account 1 - Учетная запись 1 + Учётная запись 1 Account 2 - Учетная запись 2 + Учётная запись 2 Account 3 - Учетная запись 3 + Учётная запись 3 @@ -16318,7 +15892,7 @@ p, li { white-space: pre-wrap; } Post Pulse to Wire - Сообщение-Импульс для Телеграфа + Сообщение-импульс для Телеграфа @@ -16363,51 +15937,35 @@ and open the Make Friend Wizard. и откройте мастер добавления узлов. - - Add file - Добавить файл - - - Add files - Добавить файлы - - - Do you want to process the link ? - Вы хотите обработать ссылку? - - - Do you want to process %1 links ? - Хотите ли вы обработать %1 ссылок? - Warning: Retroshare is about to ask your system to open this file. - Внимание: RetroShare собирается запросить открытие этого файла системой. + Внимание: RetroShare собирается запросить открытие этого файла системой. Before you do so, please make sure that this file does not contain malicious executable code. - Перед тем как это делать убедитесь в том что файл не содержит вредоносного кода. + Перед тем как это делать, убедитесь в том, что файл не содержит вредоносного кода. Identity added to People - + Личность добавлена к участникам The identity was added to people. You can now chat with it, send messages to it, etc. - + Личность была добавлена к участникам. Теперь вы можете общаться с ними, посылать сообщения и так далее. Identity cannot be added to People - + Личность не может быть добавлена к участникам The identity was not added to people. Some error occured. The link is probably corrupted. - + Личность не была добавлена к участникам, произошла ошибка. Возможно, ссылка повреждена. @@ -16542,22 +16100,22 @@ and open the Make Friend Wizard. Click to browse/download this file collection - + Нажмите, чтобы просмотреть/загрузить этот файл коллекции %1 (%2) - + %1 (%2) Identity link (name=%1, ID=%2) - + Ссылка личности (имя=%1, идентификатор=%2) %1 (%2 files, %3) - + %1 (%2 файлов, %3) @@ -16577,7 +16135,7 @@ and open the Make Friend Wizard. Chat room not found - + Чат-комната не найдена @@ -16593,7 +16151,7 @@ and open the Make Friend Wizard. Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - Предупреждение: запрещенные символы найдены в именах файлов. + Предупреждение: в именах файлов найдены запрещённые символы. Символы <b>",|,/,\,&lt;,&gt;,*,?</b> будут заменены на '_'. @@ -16639,12 +16197,12 @@ 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, вероятно, потому, что вы только что обновились до этой новой версии программного обеспечения. + Эта версия RetroShare использует OpenPGP-SDK. В качестве побочного эффекта, она не использует системное публичное PGP хранилище, но имеет своё собственное хранилище, которое используется всеми экземплярами RetroShare. <br><br>Похоже, что вы не имеете такое хранилище, хотя ключи PGP упоминаются учётными записями RetroShare, вероятно, потому, что вы только что обновились до этой новой версии программного обеспечения. 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> - Выборите между:<br><ul><li><b>Ok</b> чтобы скопировать существующую связку ключей от GnuPG (безопасно), или</li><li><b>Закрыть без сохранения</b> чтобы начать все заново с пустым хранилищем ключей (вам будет предложено создать новый ключ PGP для работы с RetroShare или импортировать ранее сохраненный PGP ключ). </li><li><b>Отмена</b>чтобы выйти и создать связку ключей самостоятельно (требуются некоторые навыки PGP)</li></ul> + Выборите между:<br><ul><li><b>Ok</b> чтобы скопировать существующую связку ключей от GnuPG (безопасно), или</li><li><b>Закрыть без сохранения</b> чтобы начать всё заново с пустым хранилищем ключей (вам будет предложено создать новый ключ PGP для работы с RetroShare или импортировать ранее сохранённый PGP-ключ). </li><li><b>Отмена</b>чтобы выйти и создать связку ключей самостоятельно (требуются некоторые навыки PGP)</li></ul> @@ -16670,36 +16228,38 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + Не удаётся запустить менеджер Tor! Tor cannot be started on your system: - + Tor не может быть запущен на вашей системе: Cannot start Tor - + Не удаётся запустить Tor Sorry but Tor cannot be started on your system! The error reported is:" - + Извините, но Tor не может быть запущен на вашей системе! + +Сообщение об ошибке: " Cannot start a hidden tor service! - + Не удаётся запустить скрытую службу Tor! It was not possible to start a hidden service. - + Не удалось запустить скрытую службу. @@ -16712,8 +16272,8 @@ The error reported is:" Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - Другой экземпляр программы RetroShare, использующей тот же профиль, работает в данный момент. Пожалуйста, закройте работающую программу. Блокирующий файл: - + Другой экземпляр программы RetroShare, использующей тот же профиль, работает в данный момент. Пожалуйста, закройте работающую программу. +Блокирующий файл: @@ -16727,25 +16287,17 @@ The error reported is:" Distant peer has closed the chat - Удаленный пир закрыл чат + Удалённый участник закрыл чат Tunnel is pending... Messages will be delivered as soon as possible - + Туннель находится в ожидании... Сообщения будут доставлены как можно скорее Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Туннель в ожидании... - - - Secured tunnel is working. You can talk! - Работает безопасный туннель. Вы можете говорить! + Защищённый туннель функционирует. Сообщения доставляются немедленно! @@ -16754,7 +16306,7 @@ Reported error is: %2 Файл коллекции %1 не может быть открыт. -Отчет об ошибке: +Отчёт об ошибке: %2 @@ -16766,7 +16318,7 @@ Reported error is: %1 (%2, Extra - Source included) - %1 (%2, Дополнительный - Источник включен) + %1 (%2, дополнительно - источник включён) @@ -16781,17 +16333,17 @@ Reported error is: secs - сек + сек. TR up - TR отдача + Отдача TR TR dn - TR приём + Приём TR @@ -16831,12 +16383,12 @@ Reported error is: Move IP %1 to whitelist - Перенести IP %1 в белый список + Перенести IP %1 в белый список Whitelist entire range %1 - весь диапазон Белого списка %1 + весь диапазон белого списка %1 @@ -16847,7 +16399,7 @@ Reported error is: %1 seconds ago - %1 секунду назад + %1 секунд назад @@ -16898,19 +16450,19 @@ Reported error is: Auto Subscribe: - Автоматически подписаться: + Автоматически подписаться: Id: - Id: + Идентификатор: Security: no anonymous IDs -Безопасность: Анонимные ID запрещены +Безопасность: анонимные участники запрещены @@ -16926,7 +16478,7 @@ Security: no anonymous IDs The following has not been added to your download list, because you already have it: - Указанное ниже не добавлено в ваш список закачек, так как эти файлы у вас уже имеются: + Указанное ниже не добавлено в ваш список закачек, так как эти файлы у вас уже имеются: @@ -16981,82 +16533,82 @@ Security: no anonymous IDs Processing - + Выполнение Choosing group - + Выбор группы Creating receipt - + Создание уведомления о получении Signing receipt - + Подписание уведомления о получении Serializing - + Сериализация Creating payload - + Создание полезных данных Encrypting payload - + Шифрование полезных данных Publishing - + Публикация Waiting for receipt - + Ожидание уведомления о получении Receipt received - + Уведомление о получении получено Receipt signature failed - + Неправильная подпись уведомления о получении Encryption failed - + Ошибка шифрования Unknown - Неизвестно + Неизвестно Click to pause the hashing process - + Нажмите, чтобы приостановить процесс хеширования [Hashing is paused] - + [Хэширование приостановлено] Click to resume the hashing process - + Нажмите, чтобы возобновить процесс хеширования @@ -17071,12 +16623,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -17085,7 +16637,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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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;">Добро пожаловать в 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;">Этот помощник посодействует Вам в настройке 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;">Если Вы опытный пользователь, у вас имеется возможность настроить 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;">Данный помощник посодействует в следующем:</span></p> <p style="-qt-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;"> Даст 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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Поможет открыть доступ к файлам и папкам.</span></p> <p style="-qt-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;"> Начать использование 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;">Добро пожаловать в 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;">Этот помощник посодействует вам в настройке 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;">Если вы опытный пользователь, у вас имеется возможность настроить 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;">Данный помощник посодействует в следующем:</span></p> <p style="-qt-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;"> Даст 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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Поможет открыть доступ к файлам и папкам.</span></p> <p style="-qt-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;"> Начать использование RetroShare.</span></p></body></html> @@ -17107,7 +16659,7 @@ p, li { white-space: pre-wrap; } For best performance, RetroShare needs to know a little about your connection to the internet. - Для повышения производительности RetroShare необходимо получить информацию о Вашем подключении к Интернету. + Для повышения производительности RetroShare необходимо получить информацию о вашем подключении к интернету. @@ -17183,12 +16735,12 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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></p> <p 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;">Вы можете раздельно устанавливать флаги доступа для каждой папки:</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;">Доступно друзьям</span><span style=" font-family:'Sans'; 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;">Анонимный доступ</span><span style=" font-family:'Sans'; font-size:8pt;">: содержимое папки может быть скачано через систему анонимных туннелей.</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;">Здесь представлены папки, к которым открыт доступ. Вы можете добавлять папки в список или удалять их оттуда, воспользовавшись кнопкой слева. При добавлении папки ко всему её содержимому будет открыт общий доступ.</span></p> <p 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;">Вы можете раздельно устанавливать флаги доступа для каждой папки:</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;">Доступно доверенным узлам</span><span style=" font-family:'Sans'; 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;">Анонимный доступ</span><span style=" font-family:'Sans'; font-size:8pt;">: содержимое папки может быть скачано через систему анонимных туннелей.</span></p></body></html> @@ -17219,7 +16771,7 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - Автоматически расшаривать входящую папку (рекомендуется) + Автоматически делать доступной входящую папку (рекомендуется) @@ -17246,9 +16798,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> 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> <p 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;">Наслаждайтесь работой с RetroShare!</span></p></body></html> @@ -17257,12 +16809,12 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p 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;">Ещё один шаг! Вы почти завершили конфигурирование 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;">Эти настройки укажут 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></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;">Ещё один шаг! Вы почти завершили конфигурирование 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;">Эти настройки укажут 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></body></html> @@ -17282,7 +16834,7 @@ p, li { white-space: pre-wrap; } Start minimized on system start - Запускать свернутым при запуске системы + Запускать свёрнутым при запуске системы @@ -17346,7 +16898,7 @@ p, li { white-space: pre-wrap; } %1 KB - %1 кБ + %1 КБ @@ -17369,7 +16921,7 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - Блокируется Загрузка внедренных изображений. + Блокируется загрузка внедрённых изображений. @@ -17427,7 +16979,7 @@ p, li { white-space: pre-wrap; } Peer Id: - Id участника: + Идентификатор участника: @@ -17466,83 +17018,12 @@ p, li { white-space: pre-wrap; } <strong>Скачивание:</strong> 0.00 (кБ/с) | <strong>Отдача:</strong> 0.00 (кБ/с) - - RelayPage - - Enable Relay Connections - Разрешить трансляцию соединений - - - Use Relay Servers - Использовать серверы-трансляторы - - - Relay options - Настройки трансляции - - - Number - Количество - - - Bandwidth per link - Полоса пропускания на одно соединение - - - Total Bandwidth - Общая полоса пропускания - - - Friends - Доверенное окружение - - - kB/s - кБ/с - - - Friends of Friends - Ближнее окружение - - - General - Прочие - - - Total: - Всего: - - - Relay Server Setup - Настройки сервера-транслятора - - - Add Server - Добавить сервер - - - Server DHT Key - DHT-ключ сервера - - - Remove Server - Удалить сервер - - - Relay - Транслятор - - - <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> - - RemoteSharedFilesDialog Download... - + Загрузка... @@ -17552,11 +17033,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Рекомендуем в сообщении для + Рекомендовать в сообщении для... @@ -17569,7 +17046,7 @@ p, li { white-space: pre-wrap; } [All friend nodes] - [окружение] + [всё окружение] @@ -17635,7 +17112,7 @@ p, li { white-space: pre-wrap; } Remove IP from blacklist - Удалить IP из чёрного списка + Удалить IP из чёрного списка @@ -17654,32 +17131,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Сохраните Файл Коллекции. + Сохраните файла коллекции. File already exists. - Файл уже существует. + Файл уже существует. What do you want to do? - Что вы хотите сделать? + Что вы хотите сделать? Overwrite - Перезаписать + Перезапись Merge - Слияние + Слияние Cancel - + Отмена @@ -17702,18 +17179,18 @@ p, li { white-space: pre-wrap; } Destination: - + Назначение: Right click to change download directory - + Нажмите правой кнопкой мыши, чтобы изменить папку загрузки Cancel - Вернуться/Отмена + Отмена @@ -17743,10 +17220,10 @@ p, li { white-space: pre-wrap; } 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. - Некоторые имена файлов или каталогов содержат запрещенные символы. -Символы <b>", |, /, \, &lt;&gt;,, *,?</b> будут заменены на «_». + Некоторые имена файлов или каталогов содержат запрещённые символы. +Символы <b>", |, /, \, &lt;&gt;,, *,?</b> будут заменены на "_". Соответствующие файлы отображены красным. @@ -17770,19 +17247,11 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>Добавить выбранный элемент в коллекцию.</p><p>Если выбрана папка, все вложенные папки будут добавлены.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&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>Создать новый каталог в коллекции.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - + - Remove Duplicate @@ -17796,7 +17265,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - Редактор Коллекции + Редактор коллекции @@ -17808,39 +17277,35 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace File Count Количество Файлов - - This is the root directory. - Это корневой каталог. - Real Size: Waiting child... - Действительный размер: Ждите... + Действительный размер: ждите... Real File Count: Waiting child... - Количество реальных файлов: Ждите... + Количество реальных файлов: ждите... This is a directory. Double-click to expand it. - Это каталог. Дважды щелкните, чтобы развернуть его. + Это каталог. Нажмите дважды, чтобы развернуть его. Download files - + Скачать файлы Specify... - Выбрать... + Выбрать... Choose directory - + Выбрать папку @@ -17857,7 +17322,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Save Collection File. - Сохраните Файл Коллекции. + Сохранить файл коллекции. @@ -17892,7 +17357,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace New Directory - Новый Каталог + Новый каталог @@ -17902,7 +17367,7 @@ 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>Измените файл, куда будет сохранена коллекция.</p><p>Если Вы выберете существующий файл, то данные объединятся.</p></body></html> + <html><head/><body><p>Измените файл, куда будет сохранена коллекция.</p><p>Если вы выберете существующий файл, то данные объединятся.</p></body></html> @@ -17926,7 +17391,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Error parsing xml file - Ошибка синтаксического анализа xml-файла + Ошибка синтаксического анализа XML-файла @@ -17957,30 +17422,6 @@ If you believe it is correct, remove the corresponding line from the file and re Если вы считаете, что это правильно, удалите соответствующую строку из файла и вновь откройте его в Retroshare. - - Save Collection File. - Сохраните Файл Коллекции. - - - What do you want to do? - Что вы хотите сделать? - - - Overwrite - Перезаписать - - - Merge - Слияние - - - Cancel - Отменить загрузку - - - File already exists. - Файл уже существует. - RsDownloadListModel @@ -17988,128 +17429,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - Имя + Имя Size i.e: file size - Размер + Размер Completed - Завершено + Завершено Speed i.e: Download speed - Скорость + Скорость Progress / Availability i.e: % downloaded - Прогресс / Доступность + Прогресс / Доступность Sources i.e: Sources - Источники + Источники Status - Статус + Статус Speed / Queue position - Скорость / Место в очереди + Скорость / Место в очереди Remaining - Осталось + Осталось Download time i.e: Estimated Time of Arrival / Time left - Время загрузки + Время загрузки Hash - Хэш + Хэш Last Time Seen i.e: Last Time Receiced Data - Последний раз в сети + Последний раз в сети Path i.e: Where file is saved - Путь + Путь Failed - Ошибка + Ошибка Okay - OK (Хорошо) + OK Waiting - ожидание + Ожидание Downloading - Загрузка + Загрузка Complete - Готово + Завершено Queued - В очереди + В очереди Paused - Пауза + Пауза Checking... - Проверка ... + Проверка... Unknown - Неизвестно - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Изображение велико для передачи. -Уменьшите изображение до %1x%2 пикселей? + Неизвестно @@ -18136,17 +17568,17 @@ Reducing image to %1x%2 pixels? filename - + имя файла Sets the name and location of RetroShare's logfile. - Установка имени и пути к лог-файлу RetroShare. + Установка имени и пути к файлу журнала RetroShare. level - + уровень @@ -18156,7 +17588,7 @@ Reducing image to %1x%2 pixels? style - + стиль @@ -18166,7 +17598,7 @@ Reducing image to %1x%2 pixels? stylesheet - + спецификация стиля @@ -18176,32 +17608,28 @@ Reducing image to %1x%2 pixels? language - + язык Sets RetroShare's language. Настройки локализации RetroShare. - - RetroShare Usage Information - Статистика использования RetroShare. - Unable to open log file '%1': %2 - Не получается открыть лог-файл '%1': %2 + Не получается открыть файл журнала '%1': %2 Invalid operating mode specified: - + Указан недопустимый режим работы: built-in - Встроенный + встроенный @@ -18216,32 +17644,32 @@ Reducing image to %1x%2 pixels? opmode - + Расширенный режим Sets RetroShare's operating mode. - + Устанавливает режим работы RetroShare. RsLinkURL - + RsLinkURL Open RsLink with protocol retroshare:// - + Открывать RetroShare-ссылки по протокололу retroshare:// Open RsFile with or without arg. - + Открыть файл RetroShare с или без аргументов. RetroShare GUI Usage Information - + Информация об использовании графического интерфейса RetroShare @@ -18265,7 +17693,7 @@ Reducing image to %1x%2 pixels? Registry Access Error. Maybe you need Administrator right. - Ошибка доуступа к реестру, возможно необходимы права администратора. + Ошибка доступа к реестру, возможно необходимы права администратора. @@ -18273,7 +17701,7 @@ Reducing image to %1x%2 pixels? RTT Statistics - RTT статистика + Статистика RTT @@ -18281,7 +17709,7 @@ Reducing image to %1x%2 pixels? Enter a keyword here (at least 3 char long) - Введите ключевое слово (по меньшей мере – 3 символа) + Введите ключевое слово (не менее 3 символов) @@ -18317,12 +17745,12 @@ Reducing image to %1x%2 pixels? Multi-hop search at distance 6 in the network (always reports available files) - Мульти-хоп поиск на дистанции в 6 хопов в сети (всегда сообщает о доступных файлах) + Многопрыжковый поиск на дистанции в 6 прыжков по сети (всегда сообщает о доступных файлах) Distant - Удаленный + Дальние узлы @@ -18357,7 +17785,7 @@ Reducing image to %1x%2 pixels? Search Id - Поиск ID + Поиск идентификатора @@ -18402,7 +17830,7 @@ Reducing image to %1x%2 pixels? Max results: - Макс результаты: + Макс. результатов: @@ -18526,7 +17954,7 @@ Reducing image to %1x%2 pixels? New RetroShare Link(s) - Новая RetroShare-ссылка (-ки) + Новая RetroShare-ссылка @@ -18536,17 +17964,17 @@ Reducing image to %1x%2 pixels? Create Collection... - Создание Коллекции... + Создание коллекции... Modify Collection... - Изменение Коллекции... + Изменение коллекции... View Collection... - Просмотр Коллекции... + Просмотр кКоллекции... @@ -18585,7 +18013,7 @@ Reducing image to %1x%2 pixels? Peer ID: - ID пира: + Идентификатор участника: @@ -18595,14 +18023,14 @@ Reducing image to %1x%2 pixels? Peer Name: - Имя Участника: + Имя участника: Unknown Peer - Неизвестный пир + Неизвестный участник @@ -18692,7 +18120,7 @@ Reducing image to %1x%2 pixels? Peer ID: - ID пира: + Идентификатор участника: @@ -18732,12 +18160,12 @@ Reducing image to %1x%2 pixels? Connection refused by remote peer - Соединение отклонено удаленным пиром + Соединение отклонено удалённым участником Unknown (Incoming) Connect Attempt - Неизвестная (входящая) Попытка соединения + Неизвестная попытка соединения (входящая) @@ -18756,7 +18184,7 @@ Reducing image to %1x%2 pixels? Unknown Peer - Неизвестный пир + Неизвестный участник @@ -18771,12 +18199,12 @@ Reducing image to %1x%2 pixels? Certificate has wrong signature!! This peer is not who he claims to be. - Сертификат имеет неправильную подпись!! Этот пир — не тот, за кого он себя выдает. + Сертификат имеет неправильную подпись!!! Этот участник — не тот, за кого он себя выдаёт. Missing/Damaged certificate. Not a real Retroshare user. - Потерян/Поврежден сертификат. Не настоящий пользователь Retroshare. + Утерян/повреждён сертификат. Не настоящий пользователь Retroshare. @@ -18786,12 +18214,12 @@ Reducing image to %1x%2 pixels? Peer/node not in friendlist (PGP id= - Участник / узел не находится в доверенном окружении (PGP Id= + Участник / узел не находится в доверенном окружении (PGP iD = Missing/Damaged SSL certificate for key - Потерян/Поврежден SSL-сертификат для ключа + Утерян/повреждён SSL-сертификат для ключа @@ -18806,10 +18234,6 @@ Reducing image to %1x%2 pixels? Network Mode Режим сети - - Nat - Nat - Automatic (UPnP) @@ -18854,7 +18278,7 @@ Reducing image to %1x%2 pixels? NAT - + NAT @@ -18870,7 +18294,7 @@ Reducing image to %1x%2 pixels? Port: - Порт: + Порт: @@ -18880,7 +18304,7 @@ Reducing image to %1x%2 pixels? External ip address finder - Поисковик внешнего ip адреса + Поисковик внешнего IP-адреса @@ -18890,17 +18314,13 @@ Reducing image to %1x%2 pixels? Known / Previous IPs: - Известные/Предыдущие IP-адреса: - - - Show Discovery information in statusbar - Показывать информацию об обнаружении в строке состояния + Известные/предыдущие IP-адреса: 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. Если вы снимете этот флажок, RetroShare может определить ваш IP-адрес только при подключении к кому-нибудь. Этот флажок помогает в установлении соединений на начальном этапе, когда у вас мало контактов. Он также помогает, если вы находитесь за межсетевым экраном или используете VPN. @@ -18921,38 +18341,38 @@ behind a firewall or a VPN. Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - Диапазон доступных портов – от 1024 до 65535. Обычно Порты ниже 1024 зарезервированы операционной системой. + Диапазон доступных портов: от 1024 до 65535. Обычно порты ниже 1024 зарезервированы операционной системой. Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - Диапазон доступных портов – от 1024 до 65535. Обычно Порты ниже 1024 зарезервированы операционной системой. + Диапазон доступных портов: от 1024 до 65535. Обычно порты ниже 1024 зарезервированы операционной системой. Onion Address - Адрес Tor + Onion-адрес Discovery On (recommended) - Обнаружение Вкл. (рекомендуется) + Обнаружение включено (рекомендуется) Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Tor был автоматически настроен Retroshare. Здесь не нужно ничего менять. Discovery Off - Обнаружение Выкл. + Обнаружение выключено Hidden - See Config - Скрытые - см Конфигурацию + Скрытые - см. конфигурацию @@ -18967,7 +18387,7 @@ behind a firewall or a VPN. Points at: - Указывает на: + Указывает на: @@ -18993,12 +18413,12 @@ behind a firewall or a VPN. BOB is running and accessible - + BOB работает и доступен BOB is not accessible! Is it running? - + BOB недоступен! Он работает? @@ -19007,124 +18427,128 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + RetroShare использует BOB для создания %1 туннеля на %2:%3 (с именем %4) + +При изменении параметров (например, порта) используйте кнопки внизу, чтобы перезапустить BOB. + + client - + клиентского server - + серверного unknown - Неизвестно + неизвестно BOB is processing a request - + BOB обрабатывает запрос connectivity check - + проверка подключения generating key - + создание ключа starting up - + запуск shuting down - + завершение работы BOB is processing a request: %1 - + BOB обрабатывает запрос: %1 BOB is broken - + BOB не функционирует BOB encountered an error: - + BOB столкнулся с ошибкой: BOB tunnel is running - + BOB-туннель работает BOB is working fine: tunnel established - + BOB работает нормально: туннель установлен BOB tunnel is not running - + BOB-туннель не работает BOB is inactive: tunnel closed - + BOB неактивен: туннель закрыт request a new server key - + Запрос нового ключа сервера load server key from base64 - + Загрузить ключ сервера из base64 stop BOB tunnel first to generate a new key - + Чтобы создать новый ключ, сначала остановите туннель BOB stop BOB tunnel first to load a key - + Чтобы загрузить ключ, сначала остановите туннель BOB stop BOB tunnel first to disable BOB - + Чтобы отключить BOB, сначала остановите туннель BOB 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! - Прокси не включен или сломан. -Все ли сервисы запущены и работают? + Прокси не включён или неисправен. +Все ли службы запущены и работают? Также проверьте порты. @@ -19145,154 +18569,161 @@ Also check your ports! 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> + <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>Лимит выгрузки охватывает всё программное обеспечение. Слишком маленький лимит выгрузки в конечном итоге может заблокировать службы с низким приоритетом (форумы, каналы). Минимально рекомендуемое значение - 50 КБ/с.</p></body></html> WARNING: These values don't take into account the Relays. - + ПРЕДУПРЕЖДЕНИЕ: +Эти значения не учитывают трансляторы. 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] -> Next -> 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] -> Next -> 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? - + Socks-прокси Tor по умолчанию: 127.0.0.1:9050. См. конфигурацию torrc и обновите здесь. + +Socks-прокси I2P: см. http://127.0.0.1:7657/i2ptunnelmgr для настройки клиентского туннеля: +Мастер туннелей -> Клиентский туннель -> SOCKS 4/4a/5 -> введите имя -> оставьте 'Outproxies' пустым -> введите порт (и запомните!) [вы также можете установить доступность 127.0.0.1] -> Далее -> установите флажок 'Автостарт' -> готово! +Теперь введите адрес (например, 127.0.0.1) и порт, который вы выбрали ранее, для I2P-прокси. + +Вы можете подключиться к скрытым службам, даже если используете стандартный узел, так почему бы не настроить Tor и/или I2P? Automatic I2P/BOB - + Автоиспользование I2P/BOB Enable I2P BOB - changing this requires a restart to fully take effect - + Включить I2P BOB (изменение этого параметра требует перезагрузки для вступления в силу) enableds advanced settings - + Появляются дополнительные настройки advanced mode - + Расширенный режим I2P Basic Open Bridge - + Основной открытый мост I2P I2P Instance address - + Адрес экземпляра I2P 127.0.0.1 - 127.0.0.1 + 127.0.0.1 I2P proxy port - + Порт I2P-прокси BOB accessible - + BOB доступен Address - + Адрес .b32.i2p - + .b32.i2p generate new - + Создать новый Tunnel length (in/out) - + Длина туннеля (входящего/исходящего) Tunnel quantity (in/out) - + Количество туннелей (входящих/исходящих) Tunnel variance (in/out) - + Отклонение туннеля (входящего/исходящего) <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + <html><head/><body><p>Ключ сервера — если он задан, то будет использоваться для настройки<br/>скрытой службы I2P. В противном случае создаётся только клиентский туннель.</p></body></html> load key - + Загрузить ключ Start - Старт + Запуск Restart - + Перезапуск Stop - Стоп + Стоп BOB status - + Статус BOB Incoming - Входящие + Входящие <html><head/><body><p>Setup your hidden address (and port if needed)</p></body></html> - + <html><head/><body><p>Настройте свой скрытый адрес (и порт, если это необходимо)</p></body></html> @@ -19311,101 +18742,114 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Для получения входящих подключений необходимо сначала настроить скрытую службу Tor/I2P. + +Для Tor: смотрите torrc и документацию HOWTO для дополнительной информации. + +Для I2P: смотрите http://127.0.0.1:7657/i2ptunnelmgr для настройки серверного туннеля: +Мастер туннелей -> Серверный туннель -> Стандартный -> введите имя -> введите адрес и порт, который использует RS (см. локальный адрес выше) -> установите флажок "Автозапуск" -> готово! + +Как только это будет сделано, вставьте адрес Onion/I2P (в формате Base32) в поле выше. +Это ваш внешний адрес в сети Tor/I2P. +В завершении удостоверьтесь, что порты соответствуют настройкам. + +Если у вас есть проблемы с подключением через Tor, не забудьте проверить также журналы Tor. Relay - Транслятор + Транслятор Enable Relay Connections - Разрешить трансляцию соединений + Использовать подключения трансляторов Use Relay Servers - Использовать серверы-трансляторы + Использовать серверы-трансляторы Relay options - Настройки трансляции + Параметры транслятора Number - Количество + Количество Bandwidth per link - Полоса пропускания на одно соединение + Ширина канала для участника Total Bandwidth - Общая полоса пропускания + Общая ширина канала Friends - + Доверенные узлы Friends of Friends - Ближнее окружение + Ближнее окружение General - + Общее Total: - Всего: + Всего: Warning: This bandwidth adds up to the max bandwidth. - + Предупреждение: эта пропускная способность увеличивает максимальную ширину канала. Relay Server Setup - Настройки сервера-транслятора + Настройка сервера-транслятора Add Server - Добавить сервер + Добавить сервер Server DHT Key - DHT-ключ сервера + DHT-ключ сервера Remove Server - Удалить сервер + Удалить сервер - <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>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> - + <p>Активируя транслятор, вы разрешаете своему узлу Retroshare выступать в качестве моста между пользователями Retroshare, которые не могут подключиться напрямую, например, потому что они находятся за межсетевым экраном.</p> +<p>Вы можете выступать как транслятор, установив флажок <i>Использовать подключения трансляторов</i> или просто получайте для себя пользу от других участников, действующих как трансляторы, установив флажок <i>Использовать серверы-трансляторы</i>. Для первого случая вы можете указать ширину канала, выделяемую при выполнении вами роли транслятора для доверенных узлов, ближнего окружения или кого-либо ещё в сети Retroshare.</p> +<p>В любом случае узел Retroshare, действующий как транслятор, не может видеть передаваемые данные, так как они зашифрованы и аутентифицированы двумя ретранслируемыми узлами.</p> @@ -19420,12 +18864,12 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + Фильтрация IP IP blacklist - Черный список IP + Чёрный список IP @@ -19463,7 +18907,7 @@ If you have issues connecting over Tor check the Tor logs too. IPs - IPs + IP @@ -19488,7 +18932,7 @@ If you have issues connecting over Tor check the Tor logs too. Add to blacklist - Добавить в черный список + Добавить в чёрный список @@ -19498,11 +18942,7 @@ If you have issues connecting over Tor check the Tor logs too. Hidden Service Configuration - Настройка скрытых сервисов. - - - Outgoing Connections - Исходящие соединения + Настройка скрытых служб @@ -19517,7 +18957,7 @@ If you have issues connecting over Tor check the Tor logs too. I2P Socks Proxy - I2P Socks прокси + Socks-прокси I2P @@ -19535,35 +18975,16 @@ If you have issues connecting over Tor check the Tor logs too. 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>Это ваш скрытый адрес. Он должен выглядет так: <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-адрес, когда он запустится (должен оканчиваться на .b32.i2p)</p></body></html> @@ -19590,28 +19011,6 @@ I2P Socks Proxy: см. http://127.0.0.1:7657/i2ptunnelmgr для настрой 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 @@ -19620,7 +19019,7 @@ If you have issues connecting over Tor check the Tor logs too. Reported by DHT for IP masquerading - Сообщенные DHT для IP masquerading + Получено из DHT; попытка подмены IP-адреса @@ -19631,7 +19030,7 @@ If you have issues connecting over Tor check the Tor logs too. Remove - Удалить эту позицию + Удалить @@ -19643,27 +19042,23 @@ 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> - <html><head/> <body><p>IP адреса из белого списка собраны из следующих источников: IP адреса поступившие вручную при обмене сертификатами, диапазоны IP, введенные вами в этом окне или в окне безопасности элементов канала.</p> <p>Поведение по умолчанию для Retroshare: (1) всегда разрешать подключение к участникам с IP из белого списка, даже если этот IP также занесен в чёрный список; (2) дополнительно требуется, чтобы IP адрес находился в белом списке. Вы можете изменить это поведение для каждого участника в окне "Подробности" каждого узла Retroshare. </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>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>Индикатор становится зелёным, как только 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> @@ -19682,7 +19077,7 @@ If you have issues connecting over Tor check the Tor logs too. Ban every masquerading IP reported by your DHT - Запретить любой IP по маске, сообщённый вашей DHT + Запретить любой маскирующийся IP-адрес, сообщённый DHT @@ -19692,27 +19087,27 @@ If you have issues connecting over Tor check the Tor logs too. Automatically ban ranges of DHT masquerading IPs starting at - Автоматически запретить диапазон DHT по маске IP начиная с + Автоматически запретить диапазон DHT по маске IP, начиная с Outgoing Manual Tor/I2P - + Ручная настройка исходящих Tor/I2P <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + <html><head/><body><p>Настройте здесь свои socks-прокси Tor и I2P. <br/>Если вы предпочитаете использовать BOB для автоматического управления I2P, откройте соседнюю вкладку.</p></body></html> Tor Socks Proxy - Tor Socks прокси + Socks-прокси Tor Tor outgoing Okay - Исходящие Tor Окей + Исходящие Tor OK @@ -19740,7 +19135,7 @@ If you have issues connecting over Tor check the Tor logs too. Auto-download recommended files - Авто загрузка рекомендованных файлов + Автозагрузка рекомендованных файлов @@ -19797,7 +19192,7 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - проверить пиры с которыми вы хотите поделиться приватным ключом + проверить участников, с которыми вы хотите поделиться приватным ключом @@ -19877,7 +19272,7 @@ Select the Friends with which you want to Share your Channel. Share Manager - Менеджер Доступа + Менеджер доступа @@ -19971,17 +19366,13 @@ Select the Friends with which you want to Share your Channel. Files - Файлы + Файлообмен Configure shared directories Настроить разделяемые папки - - Search files - Поиск файлов - Start Search @@ -20052,23 +19443,11 @@ Select the Friends with which you want to Share your Channel. Send retroshare Links Отправить RetroShare-ссылки - - Send retroshare Links to Cloud - Отправить RetroShare-ссылки на облачный сервис - - - Add Links to Cloud - Добавить ссылки на облачный сервис - Some files have been omitted Некоторые файлы были пропущены - - Some files have been ommitted because their hash is not available yet. - Некоторые файлы были пропущены, поскольку для них пока недоступна хэш-сумма - RetroShare Link @@ -20078,22 +19457,22 @@ Select the Friends with which you want to Share your Channel. Recommendation(s) - Рекомендация (-ии) + Рекомендации Create Collection... - Создание Коллекции... + Создание коллекции... Modify Collection... - Изменение Коллекции... + Изменение коллекции... View Collection... - Просмотр Коллекции... + Просмотр коллекции... @@ -20103,17 +19482,17 @@ Select the Friends with which you want to Share your Channel. Some files have been omitted because they have not been indexed yet. - + Некоторые файлы были пропущены, поскольку они ещё не были проиндексированы. Search string should be at least 3 characters long. - + Строка поиска должна содержать не менее 3 символов. More than 3000 results. Add more/longer search words to select less. - + Более 3000 результатов. Добавьте новые или введите более длинные слова для поиска, чтобы сократить результат. @@ -20126,7 +19505,7 @@ Select the Friends with which you want to Share your Channel. Go Online - Выйти в Сеть + Появился в сети @@ -20162,7 +19541,7 @@ Select the Friends with which you want to Share your Channel. Lobby - Лоби + Чат-комнаты @@ -20218,15 +19597,11 @@ Select the Friends with which you want to Share your Channel. Sound is on, click to turn it off - Звук включен, нажмите чтобы выключить его + Звук включён, нажмите чтобы выключить его SplashScreen - - Load profile - Загрузка профиля - Load configuration @@ -20245,19 +19620,11 @@ Select the Friends with which you want to Share your Channel. RetroShare RetroShare - - Login - Вход - - - Profile - Location - Профиль – местоположение - Password - Пароль + Пароль @@ -20274,21 +19641,25 @@ Select the Friends with which you want to Share your Channel. Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - Открыть диалоговое окно для содания нового профиля или добавления местоположений к существующему профилю. Текущие личности / местоположения затронуты не будут. + Открыть диалоговое окно для создания нового профиля или добавления местоположений к существующему профилю. Текущие личности / местоположения затронуты не будут. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</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:'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="Создать новый профиль..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">Новый профиль/узел</span></a></p></body></html> Load Person Failure - Ошибка Загрузки Личности + Ошибка загрузки личности @@ -20298,7 +19669,7 @@ p, li { white-space: pre-wrap; } Wrong password - + Неверный пароль @@ -20307,18 +19678,6 @@ p, li { white-space: pre-wrap; } Warning Предупреждение - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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"> -<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;">Управление профилями и узлами...</span></a></p></body></html> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. @@ -20364,7 +19723,7 @@ This choice can be reverted in settings. Add Friend - Добавить узел + Добавить доверенный узел @@ -20440,12 +19799,12 @@ This choice can be reverted in settings. Gxs Transport - + Gxs-транспорт RTT Statistics - RTT статистика + Статистика RTT @@ -20454,7 +19813,7 @@ This choice can be reverted in settings. Offline - Нет сети + Не в сети @@ -20547,17 +19906,17 @@ This choice can be reverted in settings. Connected: I2P - соединено: I2P + Соединено: I2P Connected: Unknown - Соединено: неизвестно + Соединение: состояние не определено DHT: Contact - DHT: контакт + DHT: работает @@ -20632,7 +19991,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20645,13 +20004,13 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;">Введите Ваше сообщение</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:8pt; color:#666666;">Введите ваше сообщение</span></p></body></html> @@ -20741,7 +20100,7 @@ p, li { white-space: pre-wrap; } Remove this item - + Удалить этот объект @@ -20783,12 +20142,12 @@ p, li { white-space: pre-wrap; } File %1 does not exist at location. - Файл %1 не существует в указанном месте + Файл %1 не существует в указанном месте. File %1 is not completed. - Файл %1 не полный + Файл %1 не полный. @@ -20870,12 +20229,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - Удалить все теги + Удалить все метки New tag ... - Новый тег... + Новая метка... @@ -20896,58 +20255,58 @@ p, li { white-space: pre-wrap; } Dialog - Диалоговое окно + Диалоговое окно Setting up Tor... - + Настройка Tor... Tor status: - + Статус Tor: Unknown - Неизвестно + Неизвестно Not started - + Не запущен Hidden service address: - + Адрес скрытой службы: Tor bootstrap status: - + Статус начальной загрузки Tor: Not set - + Не задан Onion address: - + Onion-адрес: Check that Tor is accessible in your executable path - + Убедитесь, что Tor находится в одной из папок, доступных для запуска исполняемых файлов [Waiting for Tor...] - + [Ожидание Tor...] @@ -20955,28 +20314,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + <p>Эта версия Retroshare использует Tor для подключения к вашим доверенным узлам.</p> Tor is currently offline - + Tor сейчас недоступен Tor is OK - + Tor в порядке No tor configuration - + Нет конфигурации Tor @@ -20994,7 +20353,7 @@ p, li { white-space: pre-wrap; } Shared Directories - Разделяемые папаки + Разделяемые папки @@ -21029,42 +20388,42 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + <html><head/><body><p>Переходя по символическим ссылкам, Retroshare может столкнуться с тем же самым папкой/файлом несколько раз. Если флажок установлен, этот параметр заставит Retroshare молча игнорировать повторяющийся объект. Этот параметр защищает Retroshare при индексировании папок от зацикливания.</p></body></html> Ignore duplicate files/directories - + Игнорировать повторяющиеся файлы и папки Maximum depth (0=unlimited): - + Максимальная глубина (0 - неограниченно): <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + <html><head/><body><p>Это значение позволяет ограничить глубину индексирования иерархии папок, начиная с базовой. Если вы разрешите Retroshare переходить по символическим ссылкам и снимите &quot;Игнорировать повторяющиеся файлы и папки&quot;,этот параметр позволит избежать зацикливания Retroshare во время анализа папок.</p></body></html> Ignore files ending with: - + Игнорировать файлы, заканчивающиеся на: <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + <html><head/><body><p>Добавьте любую комбинацию суффиксов, разделённых &quot;;&quot;. Например &quot;~;.bak;.old&quot;</p></body></html> ignore files starting with: - + Игнорировать файлы, начинающиеся с: <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + <html><head/><body><p>Добавьте любую комбинацию префиксов, разделённых &quot;;&quot;, например &quot;.;~&quot;</p></body></html> @@ -21085,12 +20444,12 @@ p, li { white-space: pre-wrap; } Maximum uploads per friend (0 = no limit) - + Максимальное количество закачек для участника (0 - неограниченно): Default chunk strategy: - Метод выбора частей по умолчанию + Метод выбора частей по умолчанию: @@ -21100,17 +20459,17 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - Сковзное шифрование при передаче файлов: + Сквозное шифрование при передаче файлов: Allow direct download: - + Разрешить прямую загрузку: Streaming - Последовательно + Последовательный @@ -21120,12 +20479,12 @@ p, li { white-space: pre-wrap; } Random - Случайно + Случайный MB - Мб + МБ @@ -21145,29 +20504,29 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + <html><head/><body><p>Как RS управляет прямой загрузкой.</p></body></html> Yes - Да + Да No - Нет + Нет Per user - + Индивидуально <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -21178,7 +20537,7 @@ p, li { white-space: pre-wrap; } Max. tunnel req. forwarded per second: - Макс. туннельных запросов переданных в секунду: + Максимум туннельных запросов, переданных в секунду: @@ -21188,12 +20547,12 @@ p, li { white-space: pre-wrap; } <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>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> + <html><head/><body><p>Это значение определяет как много туннелей в секунду можно создавать. </p><p>Если у вас быстрое подключение к сети, вы можете повысить это значение до 30-40, Учтите, что это создаёт много мелких пакетов и может сильно замедлить передачу файлов.</p><p>Значение по умолчанию - 20. Если вы не уверены, оставьте значение по умолчанию.</p></body></html> @@ -21208,7 +20567,7 @@ p, li { white-space: pre-wrap; } Files - Файлы + Файлообмен @@ -21226,7 +20585,7 @@ p, li { white-space: pre-wrap; } You have %1 completed download - У вас есть %1 завершенная загрузка + У вас есть %1 завершённая загрузка @@ -21270,21 +20629,6 @@ p, li { white-space: pre-wrap; } Completed Завершено - - Speed - i.e: Download speed - Скорость - - - Progress / Availability - i.e: % downloaded - Прогресс / Доступность - - - Sources - i.e: Sources - Источники - Status @@ -21300,16 +20644,6 @@ p, li { white-space: pre-wrap; } Remaining Осталось - - Download time - i.e: Estimated Time of Arrival / Time left - Время загрузки - - - Peer - i.e: user name - Участник - Progress @@ -21364,7 +20698,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Участник + Участник @@ -21400,12 +20734,12 @@ p, li { white-space: pre-wrap; } Details... - Подробности ... + Подробности... Clear Completed - Убрать завершенные + Убрать завершённые @@ -21441,7 +20775,7 @@ p, li { white-space: pre-wrap; } Streaming - Последовательно + Последовательный @@ -21461,7 +20795,7 @@ p, li { white-space: pre-wrap; } Random - Случайно + Случайный @@ -21476,7 +20810,7 @@ p, li { white-space: pre-wrap; } Rename file... - Переименовать файл + Переименовать файл... @@ -21486,17 +20820,17 @@ 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> + <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... - Переместить в очереди ... + Переместить в очереди... Priority (Speed)... - Приоритет (скорость) + Приоритет (скорость)... @@ -21513,70 +20847,6 @@ p, li { white-space: pre-wrap; } Choose directory Выберите каталог - - Failed - Ошибка - - - Okay - OK (Хорошо) - - - Waiting - ожидание - - - Downloading - Загрузка - - - Complete - Готово - - - Queued - В очереди - - - Paused - Пауза - - - Checking... - Проверка ... - - - Unknown - Неизвестно - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Если хеш-сумма принятых данных не соответствует -хеш-сумме, указанной источником, то принятые данные, -скорее всего, искажены. RetroShare спросит у источника -детальную информацию о данных. - -Программа проанализирует соответствие данных -и искажённые блоки буду скачаны снова. -Будьте терпеливы! На данную процедуру необходимо время. - - - Transferring - Передача - - - Uploading - Передача - Anonymous end-to-end encrypted tunnel 0x @@ -21586,7 +20856,7 @@ Try to be patient! Tunnel - + Туннель @@ -21629,7 +20899,7 @@ Try to be patient! File %1 is not completed. If it is a media file, try to preview it. - Файл %1 не завершен. Если это медиафайл, попробуйте Предпросмотр + Файл %1 не завершён. Если это медиафайл, попробуйте предпросмотр @@ -21646,15 +20916,6 @@ Try to be patient! Please enter a new--and valid--filename Пожалуйста введите новое--и действительное--имя файла - - Last Time Seen - i.e: Last Time Receiced Data - Последний раз в сети - - - UserID - Идентификатор пользователя - @@ -21675,12 +20936,12 @@ Try to be patient! Show Size Column - Показать Размер Столбца + Показать размер столбца Show Completed Column - Показать Столбец Завершенные + Показать столбец "Завершённые" @@ -21690,7 +20951,7 @@ Try to be patient! Show Speed Column - Показать Столбец Скорость + Показать столбец "Скорость" @@ -21700,7 +20961,7 @@ Try to be patient! Show Progress / Availability Column - Показать Столбец Прогресс/Доступность + Показать столбец "Прогресс/Доступность" @@ -21710,22 +20971,22 @@ Try to be patient! Show Sources Column - Показать Столбец Источники + Показать столбец "Источники" Show Status Column - Показать Столбец Состояние + Показать столбец "Состояние" Show Speed / Queue position Column - Показать Столбец Скорость / Положение очереди + Показать столбец "Скорость / Положение в очереди" Show Remaining Column - Показать Столбец Оставшееся + Показать столбец "Оставшееся" @@ -21735,12 +20996,12 @@ Try to be patient! Show Download time Column - Показать Столбец Время загрузки + Показать столбец "Время загрузки" Show Hash Column - Показать Столбец Хэш + Показать столбец "Хэш" @@ -21750,7 +21011,7 @@ Try to be patient! Show Last Time Seen Column - Показать Столбец Последний Просмотр + Показать столбец "Последний просмотр" @@ -21762,11 +21023,6 @@ Try to be patient! File Transfers Файлообмен - - Path - i.e: Where file is saved - Путь - Path @@ -21775,7 +21031,7 @@ Try to be patient! Show Path Column - Показать Столбец Путь + Показать столбец "Путь" @@ -21785,22 +21041,22 @@ Try to be patient! Try it again? - Попробуйте еще раз? + Попробуйте ещё раз? Create Collection... - Создание Коллекции... + Создание коллекции... Modify Collection... - Изменение Коллекции... + Изменение коллекции... View Collection... - Просмотр Коллекции... + Просмотр коллекции... @@ -21810,21 +21066,17 @@ Try to be patient! %1 tunnels - + %1 туннелей Anonymous tunnel 0x Анонимный туннель 0x - - version: - версия: - Files - Файлы + Файлообмен @@ -21845,18 +21097,18 @@ Try to be patient! Files - Файлы + файлов File - Файл + файл Empty - + Пусто @@ -21887,7 +21139,7 @@ Try to be patient! # Files - + # файлов @@ -21917,12 +21169,12 @@ Try to be patient! Column %1 - + Столбец %1 Row %1 - + Строка %1 @@ -21956,7 +21208,7 @@ Try to be patient! Tunnel id - ID туннеля + Идентификатор туннеля @@ -21971,12 +21223,12 @@ Try to be patient! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Запрос идентификатора: %1 %3 сек. назад от %2 %4 (%5 совпадений) Request id: %1 from [%2] %3 secs ago - Запрос id: %1 от [%2] %3 сек. назад + Запрос идентификатора: %1 от [%2] %3 сек. назад @@ -21989,7 +21241,7 @@ Try to be patient! F2F router information - Информация F2F роутера + Информация F2F-роутера @@ -22017,7 +21269,7 @@ Try to be patient! Anonymous tunnels - Анонимный туннели + Анонимные туннели @@ -22027,7 +21279,7 @@ Try to be patient! Unknown Peer - Неизвестный пир + Неизвестный участник @@ -22146,7 +21398,7 @@ Try to be patient! OK - OK (Хорошо) + OK @@ -22176,7 +21428,7 @@ Try to be patient! Show Log - Показать История + Показать журнал @@ -22196,7 +21448,7 @@ Try to be patient! Browse - Выбор файла + Обзор @@ -22209,7 +21461,7 @@ Try to be patient! Enable Retroshare WEB Interface - Включить ВЕБ-интерфейс Retroshare + Включить веб-интерфейс Retroshare @@ -22219,63 +21471,47 @@ Try to be patient! Port: - Порт: + Порт: Allow access from all IP addresses (Default: localhost only) - + Разрешить доступ от всех IP-адресов (по умолчанию: только localhost) Apply setting and start browser - + Применить настройки и запустить браузер Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - Порт: - - - allow access from all IP adresses (Default: localhost only) - разрешить доступ от всех IP-адресов (по умолчанию: только localhost) - - - apply setting and start browser - применить настройки и запустить браузер - - - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - Примечание: эти параметры не влияют на retroshare-nogui. retroshare-nogui имеет переключатель командной строки для активации веб интерфейса. + Примечание: эти настройки не влияют на 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> + <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 - не удалось запустить Веб интерфейс + не удалось запустить веб-интерфейс Webinterface - Веб интерфейс + Веб-интерфейс @@ -22369,7 +21605,7 @@ Try to be patient! All your Groups - Все ваши группы + Все мои группы @@ -22408,7 +21644,7 @@ Try to be patient! Wiki Pages - Wiki страницы + Wiki-страницы @@ -22473,27 +21709,27 @@ Try to be patient! Subscribed Groups - Подписанные Группы + Подписанные группы Popular Groups - Популярные Группы + Популярные группы Other Groups - Другие Группы + Другие группы Subscribe to Group - Подписаться на Группу + Подписаться на группу Unsubscribe to Group - Отказаться от подписки на Группу + Отписаться от группы @@ -22508,7 +21744,7 @@ Try to be patient! Edit Wiki Group - Редактировать Группу Wiki + Редактировать группу Wiki @@ -22516,27 +21752,27 @@ Try to be patient! Page Edit History - История Редактирования Страницы + История редактирования страницы Enable Obsolete Edits - Включить Устаревшие Изменения + Включить устаревшие изменения Choose for Merge - Выбрать для Слияния + Выбрать для слияния Merge for Republish (TODO) - Слияние для повторной Публикации (СДЕЛАТЬ) + Слияние для повторной публикации (СДЕЛАТЬ) Publish Date - Дата Публикации + Дата публикации @@ -22546,7 +21782,7 @@ Try to be patient! PageId - Идентификатор Страницы + Идентификатор страницы @@ -22561,7 +21797,7 @@ Try to be patient! Wiki Group: - Информация о Группе: + Информация о группе: @@ -22576,14 +21812,14 @@ Try to be patient! Tags - Тэги + Метки Show Edit History - Показать Историю Редактирования + Показать историю редактирования @@ -22614,18 +21850,18 @@ Try to be patient! Hide Edit History - Скрыть Историю Редактирования + Скрыть историю редактирования Edit Page - Редактировать Страницу + Редактировать страницу Create New Wiki Page - Создать Новую Страницу Wiki + Создать новую страницу Wiki @@ -22636,7 +21872,7 @@ Try to be patient! Edit Wiki Page - Редактировать Страницу Wiki + Редактировать страницу Wiki @@ -22644,7 +21880,7 @@ Try to be patient! Create New Wiki Group - Создать Новую Группу Wiki + Создать новую группу Wiki @@ -22654,17 +21890,17 @@ Try to be patient! Edit Wiki Group - Редактировать Группу Wiki + Редактировать группу Wiki Add Wiki Moderators - Добавить Модераторов Wiki + Добавить модераторов Wiki Select Wiki Moderators - Выбрать Модераторов Wiki + Выбрать модераторов Wiki @@ -22674,7 +21910,7 @@ Try to be patient! Update Group - Обновить Группу + Обновить группу @@ -22682,13 +21918,13 @@ Try to be patient! TimeRange - Диапазон Времени + Диапазон времени All - Все + Всё @@ -22733,7 +21969,7 @@ Try to be patient! Manage Accounts - Управление Учетными записями + Управление учётными записями @@ -22763,17 +21999,17 @@ Try to be patient! Account 1 - Учетная запись 1 + Учётная запись 1 Account 2 - Учетная запись 2 + Учётная запись 2 Account 3 - Учетная запись 3 + Учётная запись 3 @@ -22787,7 +22023,7 @@ Try to be patient! Post Pulse to Wire - Сообщение-Импульс для Телеграфа + Сообщение-импульс для Телеграфа @@ -22808,26 +22044,26 @@ Try to be patient! KB kilobytes (1024 bytes) - КБ + КБ MB megabytes (1024 kilobytes) - Мб + МБ GB gigabytes (1024 megabytes) - Гб + ГБ TB terabytes (1024 gigabytes) - Тб + ТБ @@ -22838,7 +22074,7 @@ Try to be patient! < 1m < 1 minute - < 1 мин + < 1 мин. @@ -22850,19 +22086,19 @@ Try to be patient! %1h %2m e.g: 3hours 5minutes - %1ч %2м + %1 ч. %2 м. %1d %2h e.g: 2days 10hours - %1д %2ч + %1 дн. %2 ч. %1y %2d e.g: 2 years 2days - %1г %2д + %1 г. %2 дн. @@ -22904,134 +22140,134 @@ Try to be patient! Do you accept connections signed by this profile? - Разрешаете ли вы соединения, подписанные этим ключом? + Разрешаете ли вы соединения, подписанные этим ключом? Name of the profile - Имя профиля + Имя профиля This column indicates trust level and whether you signed the profile PGP key - Этот столбец показывает уровень доверия к ключу, а также факт подписания PGP-ключа данного профиля + Этот столбец указывает уровень доверия и подписан ли PGP-ключ профиля Did that peer sign your own profile PGP key - Подписал ли этот участник мой PGP-ключ + Этот узел подписал ваш ключ PGP-профиля PGP Key Id of that profile - Идентификатор PGP-ключа + Идентификатор PGP-ключа этого профиля Last time this key was used (received time, or to check connection) - Последний раз ключ использовался (полученное время или попытка соединения) + В последний раз, когда использовался этот ключ (полученное время или проверка соединения) Connections - + Соединения Profile - Профиль + Профиль Trust level - Уровень доверия + Уровень доверия Has signed your key? - Пописан мною + Подписал ваш ключ? Id - Id + Идентификатор Last used - Последний используемый + Последнее использование Personal signature - Личная подпись + Личная подпись Marginally trusted peer - Минимально доверенный пир + Минимально доверенный участник Fully trusted peer - Полное доверие к пиру + Полное доверие к участнику Untrusted peer - Не доверенный пир + Недоверенный участник Yes - Да + Да No - Нет + Нет Last hour - Последний час + Последний час Today - Сегодня + Сегодня Never - Никогда + Никогда %1 days ago - %1 дней назад + %1 дней назад Accepted - Предпочитать сквозное шифрование + Разрешены - - + - PGP key signed by you - ключ PGP, подписанный вами + PGP-ключ подписан вами has authenticated you. Right-click and select 'make friend' to be able to connect. - подтвердил вашу подлинность. -Щёлкните правой кнопкой мыши и выберите "Добавить в окружение", чтобы иметь возможность подключиться. + выполнил проверку вашей подлинности. +Нажмите правую кнопку мыши и выберите "Добавить в доверенные узлы" для возможности подключения. - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_sl.qm b/retroshare-gui/src/lang/retroshare_sl.qm index 0b5815380..25ccb81bb 100644 Binary files a/retroshare-gui/src/lang/retroshare_sl.qm and b/retroshare-gui/src/lang/retroshare_sl.qm differ diff --git a/retroshare-gui/src/lang/retroshare_sl.ts b/retroshare-gui/src/lang/retroshare_sl.ts index 50f543c6b..a246577cc 100644 --- a/retroshare-gui/src/lang/retroshare_sl.ts +++ b/retroshare-gui/src/lang/retroshare_sl.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -20,7 +18,7 @@ About RetroShare - + @@ -28,7 +26,7 @@ About - + @@ -36,52 +34,52 @@ Form - + About - + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - + Have fun ;-) - + Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + @@ -97,28 +95,28 @@ File type(extension): - + Use default command - + Command - + RetroShare - + - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - + @@ -126,27 +124,27 @@ RetroShare: Advanced Search - + Search Criteria - + Add a further search criterion. - + Reset the search criteria. - + Cancels the search. - + @@ -156,12 +154,12 @@ Perform the advanced search. - + Search - + @@ -170,102 +168,102 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + Description: - + Share Options - + Policy: - + @@ -275,101 +273,101 @@ Comments: - + Identity: - + Public - + Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -378,101 +376,101 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + Description: - + Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -480,32 +478,32 @@ p, li { white-space: pre-wrap; } Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -513,187 +511,187 @@ p, li { white-space: pre-wrap; } Language - + Choose the language used in RetroShare - + (Needs restart) - + Style - + Choose RetroShare's interface style - + Style Sheet - + Appearance - + Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -702,43 +700,43 @@ p, li { white-space: pre-wrap; } 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -746,17 +744,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + [ERROR]) - + @@ -764,32 +762,32 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + Remove - + Set your Avatar picture - + Load Avatar - + @@ -797,7 +795,7 @@ p, li { white-space: pre-wrap; } Click to change your avatar - + @@ -805,7 +803,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -813,7 +811,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -821,7 +819,7 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - + @@ -837,37 +835,37 @@ p, li { white-space: pre-wrap; } Receive Rate - + Send Rate - + Always on Top - + Style - + Changes the transparency of the Bandwidth Graph - + 100 - + % Opaque - + @@ -882,12 +880,12 @@ p, li { white-space: pre-wrap; } Since: - + Hide Settings - + @@ -896,33 +894,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -935,72 +933,72 @@ p, li { white-space: pre-wrap; } ID - + In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + Form - + @@ -1008,57 +1006,57 @@ p, li { white-space: pre-wrap; } Form - + Friend: - + Type: - Vrsta: + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1066,27 +1064,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1094,180 +1092,180 @@ p, li { white-space: pre-wrap; } Name - Ime + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1275,7 +1273,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1283,38 +1281,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1328,177 +1326,177 @@ p, li { white-space: pre-wrap; } Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private - + Public - + Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + @@ -1513,22 +1511,22 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + @@ -1538,12 +1536,12 @@ Double click a chat room to enter and chat. Security: - + Peers: - + @@ -1553,36 +1551,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - Pokaži + column - + Chats - + @@ -1590,33 +1588,33 @@ Double click a chat room to enter and chat. Remove Item - + Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + @@ -1626,7 +1624,7 @@ Double click a chat room to enter and chat. Quick Message - + @@ -1635,279 +1633,279 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + Style - + Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1917,72 +1915,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1990,32 +1988,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2023,7 +2021,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2031,7 +2029,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2039,325 +2037,325 @@ Double click a chat room to enter and chat. Close - + Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2365,12 +2363,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2378,12 +2376,12 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + @@ -2394,23 +2392,23 @@ Double click on it to add his name on text writer. IDs - + Personal Circles - + Public Circles - + Peers - + @@ -2420,89 +2418,89 @@ Double click on it to add his name on text writer. ID - + Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2510,123 +2508,123 @@ Double click on it to add his name on text writer. Details - + Local Address - + External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - + Include signatures - + RetroShare - + Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - Ime: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + @@ -2637,47 +2635,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2685,229 +2683,229 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2919,23 +2917,23 @@ Double click on it to add his name on text writer. 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: - + @@ -2947,254 +2945,254 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3204,63 +3202,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3268,129 +3266,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3398,69 +3396,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3468,241 +3466,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3711,201 +3709,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3913,42 +3911,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3959,7 +3957,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -3969,125 +3967,125 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + Public - + IDs - + Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + ID - + Type - + Name: - Ime: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4097,86 +4095,86 @@ p, li { white-space: pre-wrap; } Remove - + Search - + All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4185,38 +4183,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4225,147 +4223,147 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + RetroShare - + File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4374,131 +4372,131 @@ p, li { white-space: pre-wrap; } Post Forum Message - + Forum - + Subject - + Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + RetroShare - + Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4506,87 +4504,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4594,7 +4592,7 @@ Do you want to discard this message? Public Information - + @@ -4604,127 +4602,127 @@ Do you want to discard this message? Location: - + Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + RetroShare - + Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4732,7 +4730,7 @@ Do you want to discard this message? users - + @@ -4740,38 +4738,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4779,42 +4777,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4822,62 +4820,62 @@ Do you want to discard this message? Details - + General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + Copy link to clipboard - + Rating - + Comments - + File Name - + @@ -4885,32 +4883,32 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + Peer Address - + @@ -4920,83 +4918,83 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + @@ -5006,7 +5004,7 @@ Do you want to discard this message? Proxy - + @@ -5016,202 +5014,202 @@ Do you want to discard this message? Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5221,43 +5219,43 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + Unknown - + RELAY END - + Yourself - + @@ -5268,17 +5266,17 @@ Do you want to discard this message? unlimited - + Own Relay - + RELAY PROXY - + @@ -5287,27 +5285,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5315,113 +5313,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5429,12 +5427,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5442,7 +5440,7 @@ Do you want to discard this message? Start file - + @@ -5452,36 +5450,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5489,12 +5487,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5502,52 +5500,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5555,47 +5553,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5603,52 +5601,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5656,73 +5654,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5730,52 +5728,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5783,47 +5781,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages - + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5831,298 +5829,298 @@ Do you want to discard this message? Last Contact - + ID - + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6130,42 +6128,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6173,17 +6171,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6191,17 +6189,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6211,17 +6209,17 @@ at least one peer was not added to a group Search Friends - + Mark all - + Mark none - + @@ -6229,122 +6227,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6352,170 +6350,170 @@ at least one peer was not added to a group Create new Profile - + Password - + All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Možnosti + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6524,131 +6522,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6656,138 +6654,138 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + Misc - + Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6796,44 +6794,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6845,31 +6843,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> @@ -6882,118 +6880,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7001,82 +6999,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - + @@ -7084,22 +7082,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7107,7 +7105,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7115,7 +7113,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7123,27 +7121,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7151,72 +7149,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7224,12 +7222,12 @@ p, li { white-space: pre-wrap; } Form - + Hide tabbar with one open tab - + @@ -7237,47 +7235,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7285,88 +7283,88 @@ p, li { white-space: pre-wrap; } Title - + Search Title - + Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - + Display - + Subscribe to download and read messages - + @@ -7374,17 +7372,17 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + @@ -7399,72 +7397,72 @@ p, li { white-space: pre-wrap; } Extension - + Hash - + Date - + Size - + Popularity - + contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7473,68 +7471,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7542,52 +7540,52 @@ p, li { white-space: pre-wrap; } Form - + Download - + TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7595,27 +7593,27 @@ p, li { white-space: pre-wrap; } Form - + Filename - + Size - + Title - + Published - + @@ -7628,37 +7626,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7666,38 +7664,38 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + Expand - + Remove Item - + Channel Description - + Loading - + New Channel - + Hide - + @@ -7705,121 +7703,121 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + Download - + Play - + Comments - + Edit - + Copy RetroShare Link - + Unsubscribe From Channel - + Expand - + Set as read and remove item - + Remove Item - + Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + Hide - + New - + 0 - + Comment - + I like this - + I dislike this - + Loading - + Comments - + @@ -7829,12 +7827,12 @@ p, li { white-space: pre-wrap; } Open File - + Play Media - + @@ -7842,154 +7840,154 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + Title - + Search Title - + Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - neznano + Distribution: - + Feeds - + Files - + Subscribers - + Description: - + Posts (at neighbor nodes): - + @@ -7997,7 +7995,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8005,48 +8003,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8054,7 +8052,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8062,67 +8060,67 @@ p, li { white-space: pre-wrap; } Form - + Hot - + New - + Top - + Voter ID: - + Refresh - + Comment - + Author - + Date - + Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8130,27 +8128,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8158,32 +8156,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8191,37 +8189,37 @@ before you can comment Create New Forum - + Forum - + Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8229,38 +8227,38 @@ before you can comment Subscribe to Forum - + Expand - + Remove Item - + Forum Description - + Loading - + New Forum - + Hide - + @@ -8269,48 +8267,48 @@ before you can comment Subject: - + Unsubscribe To Forum - + Expand - + Set as read and remove item - + Remove Item - + In Reply to: - + Loading - + Forum Feed - + Hide - + @@ -8318,244 +8316,244 @@ before you can comment Form - + Start new Thread for Selected Forum - + Search forums - + Last Post - + New Thread - + Threaded View - + Flat View - + Title - + Date - + Author - + Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + Search Title - + Search Date - + Search Author - + Content - + Search Content - + <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> - + No name - + Reply - + Start New Thread - + Expand all - + Collapse all - + Mark as read - + with children - + Mark as unread - + Copy RetroShare Link - + Hide - + Expand - + [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + @@ -8565,27 +8563,27 @@ before you can comment [ ... Missing 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> - + @@ -8598,12 +8596,12 @@ before you can comment RetroShare - + No Forum Selected! - + @@ -8611,189 +8609,189 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + Subject - + On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8801,7 +8799,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8809,38 +8807,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8848,17 +8846,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8872,38 +8870,38 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8911,12 +8909,12 @@ prevents the message to be forwarded to your friends. Public - + Publish Signatures - + @@ -8926,254 +8924,254 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + ID - + Last Post - + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + Popularity - + Posts - + Author - + GxsIdLabel - + @@ -9181,124 +9179,124 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + Unsubscribe - + Subscribe - + Open in new tab - + Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + Mark all as read - + Mark all as unread - + AUTHD - + @@ -9306,12 +9304,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9319,60 +9317,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9380,12 +9378,12 @@ prevents the message to be forwarded to your friends. Loading - + No name - + @@ -9393,107 +9391,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - + Destination - Cilj + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - + Details - + Unknown Peer - + Pending data items - + Unknown - + Yes - Da + No - Ne + @@ -9501,42 +9499,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9545,17 +9543,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9564,22 +9562,22 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + @@ -9589,141 +9587,141 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + Search - + Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + Close - + Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9731,66 +9729,66 @@ prevents the message to be forwarded to your friends. 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9799,12 +9797,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9812,32 +9810,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9845,114 +9843,114 @@ p, li { white-space: pre-wrap; } Form - + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9961,32 +9959,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -9996,206 +9994,206 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10204,181 +10202,181 @@ p, li { white-space: pre-wrap; } All - + Reputation - + Search - + Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10388,257 +10386,257 @@ 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - neznano + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10646,294 +10644,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10941,98 +10939,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11040,43 +11038,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11089,43 +11087,43 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + Type - + @@ -11135,7 +11133,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11144,7 +11142,7 @@ These identities will soon be not supported anymore. RM - + @@ -11155,32 +11153,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11193,12 +11191,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11210,25 +11208,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11237,7 +11235,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11248,12 +11246,12 @@ These identities will soon be not supported anymore. Remove - + Mark all - + @@ -11263,12 +11261,12 @@ These identities will soon be not supported anymore. Clear history - + Send - + @@ -11277,17 +11275,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11296,47 +11294,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11344,17 +11342,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11365,44 +11363,44 @@ These identities will soon be not supported anymore. Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11411,12 +11409,12 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + @@ -11426,27 +11424,27 @@ These identities will soon be not supported anymore. Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + @@ -11456,67 +11454,67 @@ These identities will soon be not supported anymore. Minimize - + Maximize - + &Quit - + RetroShare - + %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + Hide - + @@ -11526,57 +11524,57 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11585,169 +11583,169 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + @@ -11757,383 +11755,383 @@ These identities will soon be not supported anymore. Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + Subject - + On %1, %2 wrote: - + Re: - + Fwd: - + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown - + &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Close - + @@ -12143,73 +12141,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12217,47 +12215,47 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12267,7 +12265,7 @@ Do you want to save message ? Edit - + @@ -12282,32 +12280,32 @@ Do you want to save message ? A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12315,7 +12313,7 @@ Do you want to save message ? Sub: - + @@ -12323,7 +12321,7 @@ Do you want to save message ? Message - + @@ -12331,17 +12329,17 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + @@ -12356,113 +12354,113 @@ Do you want to save message ? Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + Download - + Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12470,47 +12468,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + @@ -12520,81 +12518,81 @@ Do you want to save message ? Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12603,47 +12601,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + @@ -12653,17 +12651,17 @@ Do you want to save message ? Print selected message - + Print - + Display - + @@ -12672,7 +12670,7 @@ Do you want to save message ? Tags - + @@ -12680,7 +12678,7 @@ Do you want to save message ? Inbox - + @@ -12688,18 +12686,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12707,283 +12705,283 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + Subject - + From - + Date - + Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + Search Date - + Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + Mark as read - + Mark as unread - + Add Star - + Edit - + Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -12992,37 +12990,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13030,17 +13028,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13048,27 +13046,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13076,83 +13074,83 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + Play Media - + Expand - + Remove Item - + from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + Hide - + Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13160,52 +13158,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13213,12 +13211,12 @@ Do you want to save message ? Filter: - + Search Network - + @@ -13228,92 +13226,92 @@ Do you want to save message ? Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13321,59 +13319,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13381,7 +13379,7 @@ Reported error: Network - + @@ -13389,22 +13387,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13412,7 +13410,7 @@ Reported error: New Tag - + @@ -13422,7 +13420,7 @@ Reported error: Choose color - + @@ -13440,7 +13438,7 @@ Reported error: Log entries - + @@ -13450,32 +13448,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13483,235 +13481,235 @@ Reported error: News Feed - + Channels - + Forums - + Blogs - + Security - + Test - + Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Razlikuj velike in male črke + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13719,83 +13717,83 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + Test - + This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13803,7 +13801,7 @@ Reported error: Friend Online - + @@ -13811,41 +13809,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13853,309 +13851,309 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - Možnosti + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + RetroShare - + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + Maybe password is wrong - + You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14168,7 +14166,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - + @@ -14176,23 +14174,23 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + Expand - + Remove Item - + @@ -14202,72 +14200,72 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14280,17 +14278,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + Hide - + Send Message - + @@ -14298,17 +14296,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14318,53 +14316,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14372,68 +14370,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14441,7 +14439,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + @@ -14449,47 +14447,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + Comment - + Summary - + Caption - + Where: - + Photo Title: - + When - + @@ -14499,12 +14497,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add Comment - + Write a comment... - + @@ -14512,39 +14510,39 @@ Warning: In your File-Transfer option, you select allow direct download to No. Form - + TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14552,58 +14550,58 @@ p, li { white-space: pre-wrap; } Form - + Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14611,53 +14609,53 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + Close - + Start - + Start Slide Show - + Stop Slide Show - + @@ -14665,7 +14663,7 @@ requesting to edit it! Remove - + @@ -14673,26 +14671,26 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14702,47 +14700,47 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + About - + File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14750,37 +14748,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14788,22 +14786,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14811,27 +14809,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14840,37 +14838,37 @@ 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. - + Unknown status. - + @@ -14878,18 +14876,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14897,7 +14895,7 @@ malicious behavior of crafted plugins. Popularity - + @@ -14905,17 +14903,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14923,36 +14921,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14960,32 +14958,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -14993,57 +14991,57 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + RetroShare - + Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + Title - + Link - + @@ -15051,42 +15049,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15094,37 +15092,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15132,38 +15130,38 @@ malicious behavior of crafted plugins. Subscribe to Posted - + Expand - + Remove Item - + Posted Description - + Loading - + New Posted - + Hide - + @@ -15171,80 +15169,80 @@ malicious behavior of crafted plugins. 0 - + Site - + Comments - + Comment - + Vote up - + Vote down - + \/ - + Set as read and remove item - + New - + New Comment: - + Comment Value - + Toggle Message Read Status - + Remove Item - + Loading - + By - + @@ -15252,77 +15250,77 @@ malicious behavior of crafted plugins. Form - + Hot - + New - + Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + Next - + RetroShare - + Please create or choose a Signing Id before Voting - + Previous - + 1-10 - + @@ -15330,17 +15328,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15348,7 +15346,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15356,37 +15354,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15395,20 +15393,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15418,29 +15416,29 @@ p, li { white-space: pre-wrap; } Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15449,67 +15447,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15518,22 +15516,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15543,73 +15541,73 @@ and use the import button to load it Location: - + Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + RetroShare - + Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15617,51 +15615,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15671,7 +15669,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15679,12 +15677,12 @@ and use the import button to load it From - + Date - + @@ -15700,375 +15698,375 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + Forum not found - + Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + RetroShare - + Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16076,306 +16074,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16383,19 +16381,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16404,7 +16402,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> - + @@ -16412,7 +16410,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16421,73 +16419,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16495,35 +16493,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16533,115 +16531,115 @@ p, li { white-space: pre-wrap; } Remove - + Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16649,12 +16647,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16662,17 +16660,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16680,17 +16678,17 @@ p, li { white-space: pre-wrap; } Form - + The loading of embedded images is blocked. - + Load images - + @@ -16698,52 +16696,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16751,17 +16749,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16769,17 +16767,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16787,22 +16785,22 @@ p, li { white-space: pre-wrap; } Download... - + Download - + Recommend in a message to... - + Collection - + @@ -16810,22 +16808,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16833,27 +16831,27 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + Unknown - + @@ -16861,33 +16859,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16895,32 +16893,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - Prepiši + Merge - + Cancel - Prekliči + @@ -16928,27 +16926,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -16959,39 +16957,39 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17002,22 +17000,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17027,69 +17025,69 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17099,47 +17097,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17148,17 +17146,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17166,29 +17164,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Overwrite - Prepiši - - - Cancel - Prekliči + @@ -17197,119 +17187,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - Ime + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - Stanje + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - Pot + Failed - + Okay - V redu + Waiting - + Downloading - + Complete - + Queued - + Paused - + Checking... - + Unknown - + @@ -17317,7 +17307,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17325,134 +17315,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17461,7 +17451,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17469,7 +17459,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17477,282 +17467,282 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + Search - + Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + Type - + Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice - + Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + Remove - + Remove All - + Folder - + New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17760,81 +17750,81 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + Expand - + Remove Item - + IP address: - + Peer ID: - + Location: - + Peer Name: - + Unknown Peer - + Hide - + but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17842,43 +17832,43 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + Expand - + Remove Item - + @@ -17888,62 +17878,62 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17952,42 +17942,42 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + Hide - + Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -17995,107 +17985,107 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + Local Address - + NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18104,89 +18094,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18195,300 +18185,300 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - neznano + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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 - + @@ -18497,127 +18487,127 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + @@ -18631,230 +18621,230 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + Reason - + Comment - + IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + Remove - + 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18862,27 +18852,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18890,7 +18880,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -18900,17 +18890,17 @@ If you have issues connecting over Tor check the Tor logs too. Permissions - + 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> - + @@ -18918,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + @@ -18926,7 +18916,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18934,23 +18924,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18958,148 +18948,148 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - Prekliči + Add a Share Directory - + Remove - + Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19107,17 +19097,17 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + @@ -19127,113 +19117,113 @@ Select the Friends with which you want to Share your Channel. Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + Download - + Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19241,48 +19231,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - + Download complete - + Lobby - + @@ -19290,7 +19280,7 @@ Select the Friends with which you want to Share your Channel. Event: - + @@ -19300,32 +19290,32 @@ Select the Friends with which you want to Share your Channel. Browse - + Event - + Filename - + Open File - + Sound - + Default - Privzeto + @@ -19333,12 +19323,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19346,12 +19336,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19359,61 +19349,61 @@ Select the Friends with which you want to Share your Channel. RetroShare - + Password - + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19422,7 +19412,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19431,7 +19421,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19440,7 +19430,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19448,17 +19438,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19468,68 +19458,68 @@ This choice can be reverted in settings. Messenger - + About - + SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19538,165 +19528,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19704,30 +19694,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19736,28 +19726,28 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + Style - + @@ -19767,12 +19757,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19780,96 +19770,96 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + Download File - + Download - + Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + DOWNLOAD - + LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19879,12 +19869,12 @@ p, li { white-space: pre-wrap; } Open File - + Copy RetroShare Link - + @@ -19892,17 +19882,17 @@ p, li { white-space: pre-wrap; } Subscribed - + Unsubscribe - + Subscribe - + @@ -19910,7 +19900,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19918,27 +19908,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19946,12 +19936,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19959,12 +19949,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19972,58 +19962,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20031,28 +20021,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20060,231 +20050,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Da + No - Ne + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20292,27 +20282,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20321,13 +20311,13 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + @@ -20339,12 +20329,12 @@ p, li { white-space: pre-wrap; } Size i.e: file size - + Completed - + @@ -20354,78 +20344,78 @@ p, li { white-space: pre-wrap; } Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + Search - + Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20436,158 +20426,154 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Okay - V redu + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + RetroShare - + @@ -20595,159 +20581,154 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - - - - Path - i.e: Where file is saved - Pot + @@ -20757,52 +20738,52 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20811,101 +20792,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20914,13 +20895,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20929,32 +20910,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20962,12 +20943,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20975,42 +20956,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21018,47 +20999,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21070,7 +21051,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21078,22 +21059,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21101,22 +21082,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21169,12 +21150,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21182,62 +21163,62 @@ p, li { white-space: pre-wrap; } Form - + Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21245,123 +21226,123 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + Description: - + Share Options - + Public - + All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21370,107 +21351,107 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + Edit - + New Page - + Refresh - + Search - + My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21478,74 +21459,74 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + @@ -21566,39 +21547,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21606,37 +21587,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21644,98 +21625,98 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + New - + from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21744,12 +21725,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21758,107 +21739,107 @@ p, li { white-space: pre-wrap; } Unknown Unknown (size) - + B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + Unknown - + < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21866,133 +21847,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - Da + No - Ne + Last hour - + Today - + Never - + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_sr.qm b/retroshare-gui/src/lang/retroshare_sr.qm index aa464afd5..5166f9f30 100644 Binary files a/retroshare-gui/src/lang/retroshare_sr.qm and b/retroshare-gui/src/lang/retroshare_sr.qm differ diff --git a/retroshare-gui/src/lang/retroshare_sr.ts b/retroshare-gui/src/lang/retroshare_sr.ts index d73a42587..89adfd28d 100644 --- a/retroshare-gui/src/lang/retroshare_sr.ts +++ b/retroshare-gui/src/lang/retroshare_sr.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -28,7 +26,7 @@ About - О програму + @@ -36,52 +34,52 @@ Form - Образац + About - О програму + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - О програму + Have fun ;-) - + Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Нажалост, не могу да одредим подразумевану наредбу система за ову датотеку. @@ -171,117 +169,117 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + Description: - + Share Options - + Policy: - + Quality: - + Comments: - + Identity: - + @@ -291,86 +289,86 @@ Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -379,101 +377,101 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + Description: - + Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -488,25 +486,25 @@ p, li { white-space: pre-wrap; } TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -519,12 +517,12 @@ p, li { white-space: pre-wrap; } Choose the language used in RetroShare - + (Needs restart) - + @@ -534,7 +532,7 @@ p, li { white-space: pre-wrap; } Choose RetroShare's interface style - + @@ -549,152 +547,152 @@ p, li { white-space: pre-wrap; } Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -709,37 +707,37 @@ 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -765,17 +763,17 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + @@ -785,12 +783,12 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - + Load Avatar - + @@ -806,7 +804,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -814,7 +812,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -897,33 +895,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -941,62 +939,62 @@ p, li { white-space: pre-wrap; } In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + @@ -1009,57 +1007,57 @@ p, li { white-space: pre-wrap; } Form - Образац + Friend: - + Type: - + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1067,27 +1065,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1095,180 +1093,180 @@ p, li { white-space: pre-wrap; } Name - Назив + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - Претражи + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1276,7 +1274,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1284,38 +1282,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1329,132 +1327,132 @@ p, li { white-space: pre-wrap; } Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + @@ -1469,37 +1467,37 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + @@ -1514,37 +1512,37 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - + @@ -1554,36 +1552,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - Прикажи + column - + Chats - + @@ -1596,28 +1594,28 @@ Double click a chat room to enter and chat. Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + @@ -1627,7 +1625,7 @@ Double click a chat room to enter and chat. Quick Message - + @@ -1636,153 +1634,153 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + @@ -1794,121 +1792,121 @@ Double click a chat room to enter and chat. Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1918,72 +1916,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1991,32 +1989,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2024,7 +2022,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2032,7 +2030,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2045,320 +2043,320 @@ Double click a chat room to enter and chat. Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2366,12 +2364,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2379,12 +2377,12 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + @@ -2401,22 +2399,22 @@ Double click on it to add his name on text writer. Personal Circles - + Public Circles - + Peers - + Status - + @@ -2427,83 +2425,83 @@ Double click on it to add his name on text writer. Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2511,44 +2509,44 @@ Double click on it to add his name on text writer. Details - + Local Address - + External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - + Include signatures - + @@ -2562,123 +2560,123 @@ Double click on it to add his name on text writer. Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - Назив: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + none - + <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2686,229 +2684,229 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2920,18 +2918,18 @@ Double click on it to add his name on text writer. 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. - + @@ -2948,254 +2946,254 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3205,63 +3203,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3269,129 +3267,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3399,69 +3397,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3469,241 +3467,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3712,201 +3710,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3914,42 +3912,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3960,7 +3958,7 @@ p, li { white-space: pre-wrap; } Circle Details - + @@ -3970,12 +3968,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -3990,28 +3988,28 @@ p, li { white-space: pre-wrap; } Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4021,52 +4019,52 @@ p, li { white-space: pre-wrap; } Type - + Name: - Назив: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Приватно + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4078,17 +4076,17 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4098,7 +4096,7 @@ p, li { white-space: pre-wrap; } Remove - + @@ -4109,75 +4107,75 @@ p, li { white-space: pre-wrap; } All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - Затвори + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4186,38 +4184,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4226,100 +4224,100 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + @@ -4330,43 +4328,43 @@ p, li { white-space: pre-wrap; } File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4375,12 +4373,12 @@ p, li { white-space: pre-wrap; } Post Forum Message - + Forum - + @@ -4390,47 +4388,47 @@ p, li { white-space: pre-wrap; } Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + @@ -4442,64 +4440,64 @@ p, li { white-space: pre-wrap; } Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4507,87 +4505,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4595,7 +4593,7 @@ Do you want to discard this message? Public Information - + @@ -4610,52 +4608,52 @@ Do you want to discard this message? Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + @@ -4665,67 +4663,67 @@ Do you want to discard this message? Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4733,7 +4731,7 @@ Do you want to discard this message? users - + @@ -4741,38 +4739,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4780,42 +4778,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4823,62 +4821,62 @@ Do you want to discard this message? Details - + General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + Copy link to clipboard - + Rating - + Comments - + File Name - + @@ -4886,32 +4884,32 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + Peer Address - + @@ -4921,298 +4919,298 @@ Do you want to discard this message? PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + Source - + Proxy - + Destination - + Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5222,64 +5220,64 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + Unknown - + RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5288,27 +5286,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5316,113 +5314,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5430,12 +5428,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5443,7 +5441,7 @@ Do you want to discard this message? Start file - + @@ -5453,36 +5451,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5490,12 +5488,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5503,52 +5501,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5556,47 +5554,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5604,52 +5602,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5657,73 +5655,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5731,52 +5729,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5784,47 +5782,47 @@ Do you want to discard this message? Misc - + Set message to read on activate - + Expand new messages - + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - + @@ -5832,298 +5830,298 @@ Do you want to discard this message? Last Contact - + ID - ИД + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - Претражи + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6131,42 +6129,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6174,17 +6172,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6192,17 +6190,17 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + @@ -6212,17 +6210,17 @@ at least one peer was not added to a group Search Friends - + Mark all - + Mark none - + @@ -6230,122 +6228,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6353,170 +6351,170 @@ at least one peer was not added to a group Create new Profile - + Password - + All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Опције + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6525,131 +6523,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6657,138 +6655,138 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + Misc - + Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6797,44 +6795,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6846,31 +6844,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> @@ -6883,118 +6881,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7002,82 +7000,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - ИД + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - + @@ -7085,22 +7083,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7108,7 +7106,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7116,7 +7114,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7124,27 +7122,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7152,72 +7150,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7230,7 +7228,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7238,47 +7236,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7286,88 +7284,88 @@ p, li { white-space: pre-wrap; } Title - + Search Title - + Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Последња порука + Never - + Display - + Subscribe to download and read messages - + @@ -7375,17 +7373,17 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + @@ -7400,22 +7398,22 @@ p, li { white-space: pre-wrap; } Extension - + Hash - + Date - + Size - + @@ -7425,47 +7423,47 @@ p, li { white-space: pre-wrap; } contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7474,68 +7472,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7548,47 +7546,47 @@ p, li { white-space: pre-wrap; } Download - + TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7601,27 +7599,27 @@ p, li { white-space: pre-wrap; } Filename - + Size - + Title - + Published - + Status - + @@ -7629,37 +7627,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7667,7 +7665,7 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + @@ -7683,17 +7681,17 @@ p, li { white-space: pre-wrap; } Channel Description - + Loading - + New Channel - + @@ -7706,12 +7704,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + @@ -7721,29 +7719,29 @@ p, li { white-space: pre-wrap; } Download - + Play - + Comments - + Edit - + Copy RetroShare Link - + @@ -7759,7 +7757,7 @@ p, li { white-space: pre-wrap; } Set as read and remove item - + @@ -7769,17 +7767,17 @@ p, li { white-space: pre-wrap; } Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + @@ -7789,12 +7787,12 @@ p, li { white-space: pre-wrap; } New - + 0 - 0 + @@ -7805,22 +7803,22 @@ p, li { white-space: pre-wrap; } I like this - + I dislike this - + Loading - + Comments - + @@ -7830,7 +7828,7 @@ p, li { white-space: pre-wrap; } Open File - + @@ -7843,154 +7841,154 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + Title - + Search Title - + Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - + Public - Јавно + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + Feeds - + Files - + Subscribers - + Description: - + Posts (at neighbor nodes): - + @@ -7998,7 +7996,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8006,48 +8004,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - Уклони ставку + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8055,7 +8053,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8068,27 +8066,27 @@ p, li { white-space: pre-wrap; } Hot - + New - + Top - + Voter ID: - + Refresh - + @@ -8098,32 +8096,32 @@ p, li { white-space: pre-wrap; } Author - + Date - + Score - + UpVotes - + DownVotes - + OwnVote - + @@ -8131,27 +8129,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8159,32 +8157,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8192,37 +8190,37 @@ before you can comment Create New Forum - + Forum - + Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8230,7 +8228,7 @@ before you can comment Subscribe to Forum - + @@ -8246,17 +8244,17 @@ before you can comment Forum Description - + Loading - + New Forum - + @@ -8270,12 +8268,12 @@ before you can comment Subject: - + Unsubscribe To Forum - + @@ -8286,7 +8284,7 @@ before you can comment Set as read and remove item - + @@ -8296,17 +8294,17 @@ before you can comment In Reply to: - + Loading - + Forum Feed - + @@ -8324,12 +8322,12 @@ before you can comment Start new Thread for Selected Forum - + Search forums - + @@ -8339,152 +8337,152 @@ before you can comment New Thread - + Threaded View - + Flat View - + Title - + Date - + Author - + Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + Search Title - + Search Date - + Search Author - + Content - + Search Content - + <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> - + No name - + Reply - + Start New Thread - + Expand all - + Collapse all - + Mark as read - + with children - + Mark as unread - + Copy RetroShare Link - + @@ -8499,94 +8497,94 @@ before you can comment [Banned] - + [unknown] - + Public - Јавно + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + none - + [ ... Missing 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> - + @@ -8604,7 +8602,7 @@ before you can comment No Forum Selected! - + @@ -8612,154 +8610,154 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + From - + Sent - + @@ -8769,32 +8767,32 @@ prevents the message to be forwarded to your friends. On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8802,7 +8800,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8810,38 +8808,38 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums - + Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8849,17 +8847,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8873,38 +8871,38 @@ prevents the message to be forwarded to your friends. Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8917,7 +8915,7 @@ prevents the message to be forwarded to your friends. Publish Signatures - + @@ -8927,174 +8925,174 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + @@ -9109,52 +9107,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9164,17 +9162,17 @@ prevents the message to be forwarded to your friends. Posts - + Author - + GxsIdLabel - + @@ -9182,22 +9180,22 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + @@ -9212,94 +9210,94 @@ prevents the message to be forwarded to your friends. Open in new tab - + Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + Mark all as read - + Mark all as unread - + AUTHD - + @@ -9307,12 +9305,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9320,60 +9318,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9381,12 +9379,12 @@ prevents the message to be forwarded to your friends. Loading - + No name - + @@ -9394,107 +9392,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - ИД + Destination - + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - Популарност + Details - + Unknown Peer - + Pending data items - + Unknown - + Yes - Да + No - Не + @@ -9502,42 +9500,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9546,17 +9544,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9565,22 +9563,22 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + @@ -9590,17 +9588,17 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + @@ -9611,74 +9609,74 @@ prevents the message to be forwarded to your friends. Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + @@ -9688,43 +9686,43 @@ prevents the message to be forwarded to your friends. Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9739,59 +9737,59 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9800,12 +9798,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9813,32 +9811,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9846,114 +9844,114 @@ p, li { white-space: pre-wrap; } Form - Образац + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9962,241 +9960,241 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + Type: - + Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10205,12 +10203,12 @@ p, li { white-space: pre-wrap; } All - + Reputation - + @@ -10220,426 +10218,426 @@ p, li { white-space: pre-wrap; } Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - Затвори + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - ИД + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - Јавно + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - Статус: + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10647,294 +10645,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - + Posted - + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10942,98 +10940,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11041,43 +11039,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11090,43 +11088,43 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + Type - + @@ -11136,7 +11134,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11145,7 +11143,7 @@ These identities will soon be not supported anymore. RM - + @@ -11156,32 +11154,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11194,12 +11192,12 @@ These identities will soon be not supported anymore. KeyId - + GXSId - + @@ -11211,25 +11209,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11238,7 +11236,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11254,7 +11252,7 @@ These identities will soon be not supported anymore. Mark all - + @@ -11264,12 +11262,12 @@ These identities will soon be not supported anymore. Clear history - + Send - + @@ -11278,17 +11276,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11297,47 +11295,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11345,17 +11343,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11366,7 +11364,7 @@ These identities will soon be not supported anymore. Messenger - + @@ -11376,34 +11374,34 @@ These identities will soon be not supported anymore. SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11412,42 +11410,42 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + Status - + Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + @@ -11457,17 +11455,17 @@ These identities will soon be not supported anymore. Minimize - + Maximize - + &Quit - + @@ -11477,42 +11475,42 @@ These identities will soon be not supported anymore. %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + @@ -11527,57 +11525,57 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11586,169 +11584,169 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + @@ -11758,158 +11756,158 @@ These identities will soon be not supported anymore. Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + From - + To - + Cc - + Sent - + @@ -11919,17 +11917,17 @@ Do you want to save message to draft box? On %1, %2 wrote: - + Re: - + Fwd: - + @@ -11941,195 +11939,195 @@ Do you want to save message to draft box? Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown - + &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12139,78 +12137,78 @@ Do you want to save message ? From: - + Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12218,47 +12216,47 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + Set message to read on activate - + Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12268,7 +12266,7 @@ Do you want to save message ? Edit - + @@ -12283,32 +12281,32 @@ Do you want to save message ? A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12316,7 +12314,7 @@ Do you want to save message ? Sub: - + @@ -12324,7 +12322,7 @@ Do you want to save message ? Message - + @@ -12332,138 +12330,138 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + From: - + To: - + Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + Download - + Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12471,47 +12469,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + @@ -12521,81 +12519,81 @@ Do you want to save message ? Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12604,47 +12602,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + @@ -12654,17 +12652,17 @@ Do you want to save message ? Print selected message - + Print - + Display - + @@ -12673,7 +12671,7 @@ Do you want to save message ? Tags - + @@ -12681,7 +12679,7 @@ Do you want to save message ? Inbox - + @@ -12689,18 +12687,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12708,80 +12706,80 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + @@ -12794,197 +12792,197 @@ Do you want to save message ? From - + Date - + Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + Search Date - + Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + Mark as read - + Mark as unread - + Add Star - + Edit - + Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -12993,37 +12991,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13031,17 +13029,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13049,27 +13047,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13077,22 +13075,22 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + @@ -13113,32 +13111,32 @@ Do you want to save message ? from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + @@ -13148,12 +13146,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13161,52 +13159,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13214,12 +13212,12 @@ Do you want to save message ? Filter: - + Search Network - + @@ -13229,92 +13227,92 @@ Do you want to save message ? Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13322,59 +13320,59 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + Unknown error - + Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13382,7 +13380,7 @@ Reported error: Network - + @@ -13390,22 +13388,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13413,7 +13411,7 @@ Reported error: New Tag - + @@ -13423,7 +13421,7 @@ Reported error: Choose color - + @@ -13441,7 +13439,7 @@ Reported error: Log entries - + @@ -13451,32 +13449,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13484,235 +13482,235 @@ Reported error: News Feed - + Channels - + Forums - + Blogs - + Security - + Test - + Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Разликује велика и мала слова + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + Feed - + Systray - + Count all unread messages - + @@ -13720,83 +13718,83 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + Test - + This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13804,7 +13802,7 @@ Reported error: Friend Online - + @@ -13812,41 +13810,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13854,202 +13852,202 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - Опције + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14063,100 +14061,100 @@ p, li { white-space: pre-wrap; } Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + Maybe password is wrong - + You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14169,7 +14167,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - + @@ -14177,12 +14175,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + @@ -14203,12 +14201,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + @@ -14218,12 +14216,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP Address: - + Connection Method: - + @@ -14233,42 +14231,42 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14281,7 +14279,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + @@ -14291,7 +14289,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Send Message - + @@ -14299,17 +14297,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14319,53 +14317,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14373,68 +14371,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14450,17 +14448,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + @@ -14470,27 +14468,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Summary - + Caption - + Where: - + Photo Title: - + When - + @@ -14500,12 +14498,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add Comment - + Write a comment... - + @@ -14518,34 +14516,34 @@ Warning: In your File-Transfer option, you select allow direct download to No. TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14558,53 +14556,53 @@ p, li { white-space: pre-wrap; } Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14612,33 +14610,33 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + @@ -14648,17 +14646,17 @@ requesting to edit it! Start - + Start Slide Show - + Stop Slide Show - + @@ -14674,26 +14672,26 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + @@ -14703,22 +14701,22 @@ p, li { white-space: pre-wrap; } Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + @@ -14728,12 +14726,12 @@ p, li { white-space: pre-wrap; } File name: - + File hash: - + @@ -14743,7 +14741,7 @@ p, li { white-space: pre-wrap; } will be enabled after your restart RetroShare. - + @@ -14751,37 +14749,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14789,22 +14787,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14812,27 +14810,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14841,37 +14839,37 @@ 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. - + Unknown status. - + @@ -14879,18 +14877,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14906,17 +14904,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14924,36 +14922,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14961,32 +14959,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -14994,12 +14992,12 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + @@ -15009,42 +15007,42 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + Title - + Link - + @@ -15052,42 +15050,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15095,37 +15093,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15133,7 +15131,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15149,17 +15147,17 @@ malicious behavior of crafted plugins. Posted Description - + Loading - + New Posted - + @@ -15172,19 +15170,19 @@ malicious behavior of crafted plugins. 0 - 0 + Site - + Comments - + @@ -15195,37 +15193,37 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + \/ - + Set as read and remove item - + New - + New Comment: - + Comment Value - + @@ -15240,12 +15238,12 @@ malicious behavior of crafted plugins. Loading - + By - + @@ -15258,52 +15256,52 @@ malicious behavior of crafted plugins. Hot - + New - + Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + Next - + @@ -15313,17 +15311,17 @@ malicious behavior of crafted plugins. Please create or choose a Signing Id before Voting - + Previous - + 1-10 - 1-10 + @@ -15331,17 +15329,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15349,7 +15347,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15357,37 +15355,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15396,20 +15394,20 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15419,29 +15417,29 @@ p, li { white-space: pre-wrap; } Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15450,67 +15448,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15519,22 +15517,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15549,52 +15547,52 @@ and use the import button to load it Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + @@ -15605,12 +15603,12 @@ and use the import button to load it Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15618,51 +15616,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15672,7 +15670,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15680,12 +15678,12 @@ and use the import button to load it From - + Date - + @@ -15701,285 +15699,285 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + Forum not found - + Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + @@ -15990,86 +15988,86 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16077,306 +16075,306 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + secs - + TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16384,19 +16382,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16405,7 +16403,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> - + @@ -16413,7 +16411,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16422,73 +16420,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16496,35 +16494,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16539,110 +16537,110 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16650,12 +16648,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16663,17 +16661,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16686,12 +16684,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16699,52 +16697,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16752,17 +16750,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16770,17 +16768,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16788,22 +16786,22 @@ p, li { white-space: pre-wrap; } Download... - + Download - + Recommend in a message to... - + Collection - + @@ -16811,22 +16809,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16834,27 +16832,27 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + Unknown - + @@ -16862,33 +16860,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16896,32 +16894,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - Пресними + Merge - + Cancel - + @@ -16929,27 +16927,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -16960,39 +16958,39 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17003,22 +17001,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17028,69 +17026,69 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + @@ -17100,47 +17098,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17149,17 +17147,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17167,29 +17165,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Overwrite - Пресними - - - Cancel - Откажи + @@ -17198,119 +17188,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - Назив + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - Путања + Failed - + Okay - У реду + Waiting - + Downloading - + Complete - + Queued - + Paused - + Checking... - + Unknown - + @@ -17318,7 +17308,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17326,134 +17316,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17462,7 +17452,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17470,7 +17460,7 @@ If you believe it is correct, remove the corresponding line from the file and re RTT Statistics - + @@ -17478,12 +17468,12 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + @@ -17493,216 +17483,216 @@ If you believe it is correct, remove the corresponding line from the file and re Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + Type - + Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link - + Download Notice - + Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + @@ -17712,48 +17702,48 @@ If you believe it is correct, remove the corresponding line from the file and re Remove All - + Folder - + New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17761,7 +17751,7 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + @@ -17777,12 +17767,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP address: - + Peer ID: - + @@ -17792,14 +17782,14 @@ If you believe it is correct, remove the corresponding line from the file and re Peer Name: - + Unknown Peer - + @@ -17809,33 +17799,33 @@ If you believe it is correct, remove the corresponding line from the file and re but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17843,32 +17833,32 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + @@ -17889,12 +17879,12 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + @@ -17904,12 +17894,12 @@ If you believe it is correct, remove the corresponding line from the file and re IP Address: - + Connection Method: - + @@ -17919,32 +17909,32 @@ If you believe it is correct, remove the corresponding line from the file and re Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17953,7 +17943,7 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + @@ -17963,32 +17953,32 @@ If you believe it is correct, remove the corresponding line from the file and re Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -17996,107 +17986,107 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + Local Address - + NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18105,89 +18095,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18196,300 +18186,300 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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 - + @@ -18498,147 +18488,147 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + Status - + Origin - + Reason - + @@ -18650,124 +18640,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -18780,82 +18770,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18863,27 +18853,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18891,7 +18881,7 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + @@ -18901,17 +18891,17 @@ If you have issues connecting over Tor check the Tor logs too. Permissions - + 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> - + @@ -18919,7 +18909,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Образац + @@ -18927,7 +18917,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18935,23 +18925,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18959,47 +18949,47 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - + Add a Share Directory - + @@ -19009,98 +18999,98 @@ Select the Friends with which you want to Share your Channel. Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19108,17 +19098,17 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + @@ -19128,113 +19118,113 @@ Select the Friends with which you want to Share your Channel. Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + Download - + Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19242,48 +19232,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - + Download complete - + Lobby - + @@ -19291,7 +19281,7 @@ Select the Friends with which you want to Share your Channel. Event: - + @@ -19301,32 +19291,32 @@ Select the Friends with which you want to Share your Channel. Browse - + Event - + Filename - + Open File - + Sound - + Default - Подразумевано + @@ -19334,12 +19324,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19347,12 +19337,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19366,55 +19356,55 @@ Select the Friends with which you want to Share your Channel. Password - + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19423,7 +19413,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19432,7 +19422,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19441,7 +19431,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19449,17 +19439,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19469,7 +19459,7 @@ This choice can be reverted in settings. Messenger - + @@ -19479,58 +19469,58 @@ This choice can be reverted in settings. SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + RTT Statistics - + @@ -19539,165 +19529,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19705,30 +19695,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19737,23 +19727,23 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + @@ -19768,12 +19758,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19791,86 +19781,86 @@ p, li { white-space: pre-wrap; } Download File - + Download - + Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + DOWNLOAD - + LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19880,12 +19870,12 @@ p, li { white-space: pre-wrap; } Open File - + Copy RetroShare Link - + @@ -19893,7 +19883,7 @@ p, li { white-space: pre-wrap; } Subscribed - + @@ -19911,7 +19901,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19919,27 +19909,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19947,12 +19937,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19960,12 +19950,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19973,58 +19963,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20032,28 +20022,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20061,231 +20051,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Да + No - Не + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20293,27 +20283,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20322,13 +20312,13 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + @@ -20340,50 +20330,50 @@ p, li { white-space: pre-wrap; } Size i.e: file size - + Completed - + Status - + Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + @@ -20395,38 +20385,38 @@ p, li { white-space: pre-wrap; } Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20437,153 +20427,149 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Okay - У реду + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + @@ -20596,159 +20582,154 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - - - - Path - i.e: Where file is saved - Путања + @@ -20758,52 +20739,52 @@ p, li { white-space: pre-wrap; } Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20812,101 +20793,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20915,13 +20896,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20930,32 +20911,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20963,12 +20944,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20976,42 +20957,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21019,47 +21000,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21071,7 +21052,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21079,22 +21060,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21102,22 +21083,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21170,12 +21151,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21188,57 +21169,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21246,58 +21227,58 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + Description: - + Share Options - + @@ -21307,62 +21288,62 @@ p, li { white-space: pre-wrap; } All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21371,57 +21352,57 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + Edit - + New Page - + Refresh - + @@ -21431,47 +21412,47 @@ p, li { white-space: pre-wrap; } My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21479,79 +21460,79 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + Status - + @@ -21567,39 +21548,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21607,37 +21588,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21645,98 +21626,98 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + New - + from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21745,12 +21726,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21759,107 +21740,107 @@ p, li { white-space: pre-wrap; } Unknown Unknown (size) - + B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + Unknown - + < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21867,133 +21848,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - Да + No - Не + Last hour - + Today - + Never - + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_sv.qm b/retroshare-gui/src/lang/retroshare_sv.qm index c280b1667..b87526926 100644 Binary files a/retroshare-gui/src/lang/retroshare_sv.qm and b/retroshare-gui/src/lang/retroshare_sv.qm differ diff --git a/retroshare-gui/src/lang/retroshare_sv.ts b/retroshare-gui/src/lang/retroshare_sv.ts index 2c32d5b51..9509dee3f 100644 --- a/retroshare-gui/src/lang/retroshare_sv.ts +++ b/retroshare-gui/src/lang/retroshare_sv.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + @@ -28,7 +26,7 @@ About - Om + @@ -36,52 +34,52 @@ Form - Formulär + About - Om + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - Om RetroShare + Have fun ;-) - + Only Hidden Node - + @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file Kan tyvärr inte avgöra systemets standardkommando för den här filen\n @@ -332,7 +330,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -454,7 +452,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -502,7 +500,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -515,7 +513,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -539,7 +537,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + @@ -589,7 +587,7 @@ p, li { white-space: pre-wrap; } Choose the style of Tool Buttons. - + @@ -624,52 +622,52 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + @@ -679,32 +677,32 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + @@ -913,7 +911,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Sum - + @@ -929,17 +927,17 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Count - Antal + Average - Medel + Total - + @@ -1007,12 +1005,12 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot TOTALS - + Totals - + @@ -1025,7 +1023,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Form - Formulär + @@ -1060,22 +1058,22 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Legend: - + Current - + Total - + Log scale - + @@ -1108,14 +1106,10 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot ChatLobbyDialog - - Participants - Användare - Name - Namn + @@ -1130,7 +1124,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Ban this person (Sets negative opinion) - + @@ -1140,12 +1134,12 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Sort by Name - Sortera efter namn + Sort by Activity - + @@ -1167,10 +1161,6 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Topic: %1 Ämne: %1 - - Lobby management - Lobbyhantering - %1 changed his name to: %2 @@ -1199,48 +1189,48 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - Sök + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + @@ -1260,39 +1250,39 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1308,7 +1298,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Chats - + @@ -1363,106 +1353,106 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - Kopiera RetroShare-länk + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + @@ -1493,7 +1483,7 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - + @@ -1538,17 +1528,17 @@ Double click a chat room to enter and chat. Chat rooms - + Chat room Name: - + Chat room Id: - + @@ -1583,7 +1573,7 @@ Double click a chat room to enter and chat. Default identity is anonymous - + @@ -1607,7 +1597,7 @@ Double click a chat room to enter and chat. Chats - + @@ -1665,27 +1655,27 @@ Double click a chat room to enter and chat. Distant Chat - + Everyone - + Contacts - Kontakter + Nobody - + Accept encrypted distant chat from - + @@ -1715,7 +1705,7 @@ Double click a chat room to enter and chat. Minimum font size - + @@ -1740,12 +1730,12 @@ Double click a chat room to enter and chat. Send as plain text by default - + Load embedded images - Ladda inbäddade bilder + @@ -1760,7 +1750,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + @@ -1818,14 +1808,14 @@ Double click a chat room to enter and chat. Style: - + Variant: - + @@ -1842,7 +1832,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + @@ -1892,21 +1882,17 @@ Double click a chat room to enter and chat. UserName - + /me is sending a message with /me - - - - Chat - Chatt + <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> - + @@ -1971,7 +1957,7 @@ Double click a chat room to enter and chat. Maximum count for coloring matching text - + @@ -1981,17 +1967,17 @@ Double click a chat room to enter and chat. Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + @@ -2011,7 +1997,7 @@ Double click a chat room to enter and chat. Chats - + @@ -2093,7 +2079,7 @@ Double click a chat room to enter and chat. Insert emoticon - + @@ -2103,7 +2089,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + @@ -2159,48 +2145,48 @@ Double click a chat room to enter and chat. Quote - Citera + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + @@ -2211,18 +2197,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + @@ -2257,11 +2243,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Meddelanden du skickar, kommer att levereras när din kontakt är ansluten igen. + @@ -2281,7 +2263,7 @@ after HTML conversion. Find Case Sensitively - + @@ -2303,17 +2285,17 @@ after HTML conversion. <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + @@ -2344,38 +2326,38 @@ after HTML conversion. <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + @@ -2385,12 +2367,12 @@ Double click on it to add his name on text writer. Don't stop to color after - + items found (need more CPU) - + @@ -2545,10 +2527,6 @@ Double click on it to add his name on text writer. Details Detaljer - - Peer Address - Användaradress - @@ -2563,12 +2541,12 @@ Double click on it to add his name on text writer. Node info: - + Current address: - + @@ -2581,10 +2559,6 @@ Double click on it to add his name on text writer. Port Port - - Addresses list - Adresslista - Include signatures @@ -2614,14 +2588,10 @@ Double click on it to add his name on text writer. Not connected Inte ansluten - - Peer Addresses - Klientadresser - Retroshare node details - + @@ -2636,12 +2606,12 @@ Double click on it to add his name on text writer. Last Contact : - + Retroshare version : - + @@ -2651,17 +2621,17 @@ Double click on it to add his name on text writer. Name: - Namn: + Status message: - + List of known addresses: - + @@ -2671,7 +2641,7 @@ Double click on it to add his name on text writer. Hidden Address - + @@ -2682,37 +2652,37 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + @@ -2722,7 +2692,7 @@ Double click on it to add his name on text writer. external signatures</li> - + @@ -2751,7 +2721,7 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + @@ -2777,17 +2747,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + @@ -2872,12 +2842,12 @@ Double click on it to add his name on text writer. RetroShare is better with Friends - + Invite your Friends from other Networks to RetroShare. - + @@ -2907,7 +2877,7 @@ Double click on it to add his name on text writer. Email - E-post + @@ -2975,7 +2945,7 @@ Double click on it to add his name on text writer. 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. - + @@ -2992,47 +2962,47 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + @@ -3091,7 +3061,7 @@ resources. <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> - + @@ -3182,12 +3152,12 @@ resources. Certificate appears to be valid - + Not a valid Retroshare certificate! - + @@ -3200,31 +3170,31 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + @@ -3355,7 +3325,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. IP-Addr: - + @@ -3365,27 +3335,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + @@ -3400,7 +3370,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + @@ -3443,7 +3413,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + @@ -3459,53 +3429,53 @@ even if you don't make friends. Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3582,13 +3552,13 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3952,26 +3922,6 @@ p, li { white-space: pre-wrap; } Please retry importing the full Certificate Försök igen genom att importera en fullständig Nyckel - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - @@ -4013,7 +3963,7 @@ p, li { white-space: pre-wrap; } They need a Certificate + Node for UDP connections to succeed - + @@ -4034,12 +3984,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4065,17 +4015,17 @@ p, li { white-space: pre-wrap; } Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + @@ -4090,47 +4040,47 @@ p, li { white-space: pre-wrap; } Name: - Namn: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - Privat + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + @@ -4205,28 +4155,28 @@ p, li { white-space: pre-wrap; } Circle name - + Update - + Close - Stäng + Create New Circle - + Create - Skapa + @@ -4236,12 +4186,12 @@ p, li { white-space: pre-wrap; } Add Member - + Remove Member - + @@ -4255,12 +4205,12 @@ p, li { white-space: pre-wrap; } Group Name: - Gruppnamn: + Group ID: - + @@ -4270,7 +4220,7 @@ p, li { white-space: pre-wrap; } To be defined - + @@ -4307,9 +4257,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4431,7 +4381,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + @@ -4490,7 +4440,7 @@ p, li { white-space: pre-wrap; } Edit Message - + @@ -4522,13 +4472,13 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4538,12 +4488,12 @@ Do you want to discard this message? No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + @@ -4561,16 +4511,6 @@ Do you want to discard this message? Send Skicka - - Forum Message - Foruminlägg - - - Forum Message has not been Sent. -Do you want to reject this message? - Foruminlägg har inte skickats. -Vill du kasta det här meddelandet? - Post as @@ -4579,7 +4519,7 @@ Vill du kasta det här meddelandet? Congrats, you found a bug! - + @@ -4622,12 +4562,12 @@ Vill du kasta det här meddelandet? <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 - + @@ -4647,17 +4587,17 @@ Vill du kasta det här meddelandet? Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + @@ -4785,7 +4725,7 @@ Vill du kasta det här meddelandet? Copy certificate to clipboard - + @@ -4826,7 +4766,7 @@ Vill du kasta det här meddelandet? <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> - + @@ -4852,7 +4792,7 @@ Vill du kasta det här meddelandet? No peer found in DHT - + @@ -4880,17 +4820,17 @@ Vill du kasta det här meddelandet? Faster - Snabbare + Average - Medel + Slower - Långsammare + @@ -5122,7 +5062,7 @@ Vill du kasta det här meddelandet? Copy %1 to clipboard - + @@ -5167,12 +5107,12 @@ Vill du kasta det här meddelandet? RESTRICTED CONE NAT - + FULL CONE NAT - + @@ -5187,12 +5127,12 @@ Vill du kasta det här meddelandet? UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + @@ -5378,7 +5318,7 @@ Vill du kasta det här meddelandet? Relays - + @@ -5431,7 +5371,7 @@ Vill du kasta det här meddelandet? Unreach: - + @@ -5446,7 +5386,7 @@ Vill du kasta det här meddelandet? DHT Peers: - + @@ -5466,7 +5406,7 @@ Vill du kasta det här meddelandet? Relay: - + @@ -5482,27 +5422,27 @@ Vill du kasta det här meddelandet? Peers - Användare + Relay - Relä + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5788,7 +5728,7 @@ Vill du kasta det här meddelandet? Patch - + @@ -5798,7 +5738,7 @@ Vill du kasta det här meddelandet? Header - + @@ -5821,7 +5761,7 @@ Vill du kasta det här meddelandet? # Files - + @@ -5851,12 +5791,12 @@ Vill du kasta det här meddelandet? Column %1 - + Row %1 - + @@ -5876,10 +5816,6 @@ Vill du kasta det här meddelandet? Expand new messages Expandera nya meddelanden - - Forum - Forum - Load embedded images @@ -5888,12 +5824,12 @@ Vill du kasta det här meddelandet? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + @@ -5908,7 +5844,7 @@ Vill du kasta det här meddelandet? Forums - Forum + @@ -5922,7 +5858,7 @@ Vill du kasta det här meddelandet? ID - ID + @@ -5958,7 +5894,7 @@ Vill du kasta det här meddelandet? Trusted nodes - + @@ -6011,7 +5947,7 @@ Vill du kasta det här meddelandet? Search ID - + @@ -6021,12 +5957,12 @@ Vill du kasta det här meddelandet? Profile details - + Deny connections - + @@ -6051,17 +5987,17 @@ Vill du kasta det här meddelandet? Send message to this node - + Node details - + Recommend this node to... - + @@ -6093,53 +6029,53 @@ Vill du kasta det här meddelandet? 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + @@ -6151,18 +6087,18 @@ at least one peer was not added to a group File is not writeable! - + File is not readable! - + Show Items - + @@ -6202,7 +6138,7 @@ at least one peer was not added to a group Send message to whole group - + @@ -6215,42 +6151,42 @@ at least one peer was not added to a group Dialog - + Message: - Meddelande: + Recommend friends - Rekommendera kontakter + To - Till + Please select at least one friend for recommendation. - Välj minst en kontakt för rekommendation. + Please select at least one friend as recipient. - Välj minst en kontakt som mottagare. + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6286,7 +6222,7 @@ at least one peer was not added to a group Filter only connected - + @@ -6408,7 +6344,7 @@ at least one peer was not added to a group <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> - + @@ -6449,14 +6385,6 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters Samtliga indatafält kräver minst 3 tecken - - Password (check) - Lösenord (kontroll) - - - [Required] Type the same password again here. - [Obligatoriskt] Ange samma lösenord pånytt här. - Passwords do not match @@ -6470,7 +6398,7 @@ at least one peer was not added to a group Use BOB - + @@ -6478,104 +6406,96 @@ at least one peer was not added to a group This password is for PGP Detta lösenord är för PGP - - Generate new node - Generera ny nod - You can use it now to create a new node. Du kan nu använda den till att skapa en ny nod. - - Invalid hidden node - Ogiltig gömd nod - Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - Alternativ + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + @@ -6591,17 +6511,17 @@ at least one peer was not added to a group Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + @@ -6611,7 +6531,7 @@ at least one peer was not added to a group RetroShare profile files (*.asc) - + @@ -6625,17 +6545,17 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + @@ -6646,110 +6566,110 @@ and use the import button to load it Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6802,7 +6722,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + @@ -6812,22 +6732,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + @@ -6847,22 +6767,22 @@ and use the import button to load it You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + @@ -6910,7 +6830,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6943,7 +6863,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:'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> @@ -6955,31 +6875,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> @@ -6992,7 +6912,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> - + @@ -7004,11 +6924,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7103,7 +7023,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + @@ -7116,7 +7036,7 @@ p, li { white-space: pre-wrap; } GroupBox - + @@ -7126,7 +7046,7 @@ p, li { white-space: pre-wrap; } Identity Name - + @@ -7136,42 +7056,42 @@ p, li { white-space: pre-wrap; } Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - Detaljer + @@ -7181,7 +7101,7 @@ p, li { white-space: pre-wrap; } Pending packets - + @@ -7199,17 +7119,17 @@ p, li { white-space: pre-wrap; } Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7225,7 +7145,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7261,72 +7181,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7357,12 +7277,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + @@ -7372,22 +7292,22 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7415,12 +7335,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Sort Ascending Order - + @@ -7440,33 +7360,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - Senaste inlägget + Never - Aldrig + @@ -7476,7 +7396,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + @@ -7603,7 +7523,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + @@ -7623,7 +7543,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + @@ -7633,18 +7553,18 @@ p, li { white-space: pre-wrap; } Set download directory - + [Default directory] - + Specify... - Specificera + @@ -7687,7 +7607,7 @@ p, li { white-space: pre-wrap; } Checking - + @@ -7725,7 +7645,7 @@ p, li { white-space: pre-wrap; } Published - + @@ -7815,12 +7735,12 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + @@ -7847,7 +7767,7 @@ p, li { white-space: pre-wrap; } Edit - Redigera + @@ -7929,7 +7849,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -7958,7 +7878,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -8008,32 +7928,32 @@ p, li { white-space: pre-wrap; } Never - Aldrig + Public - Publik + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + @@ -8048,7 +7968,7 @@ p, li { white-space: pre-wrap; } Show feeds - + @@ -8058,23 +7978,23 @@ p, li { white-space: pre-wrap; } Administrator: - + Last Post: - + unknown - okänd + Distribution: - + @@ -8089,7 +8009,7 @@ p, li { white-space: pre-wrap; } Subscribers - + @@ -8099,7 +8019,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8115,48 +8035,48 @@ p, li { white-space: pre-wrap; } Details - Detaljer + Remove Item - Ta bort objektet + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8250,7 +8170,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8275,7 +8195,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8420,7 +8340,7 @@ innan du kan kommentera Forum Feed - + @@ -8453,7 +8373,7 @@ innan du kan kommentera New Thread - Ny tråd + @@ -8487,7 +8407,7 @@ innan du kan kommentera Save image - + @@ -8548,7 +8468,7 @@ 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> - + @@ -8613,54 +8533,54 @@ innan du kan kommentera [Banned] - + [unknown] - + Public - Publik + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + @@ -8685,22 +8605,22 @@ innan du kan kommentera <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> - + @@ -8743,127 +8663,127 @@ innan du kan kommentera New thread - + Read status - + Edit - Redigera + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - Aldrig + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8893,12 +8813,12 @@ prevents the message to be forwarded to your friends. Subscribers - + Posts (at neighbor nodes) - + @@ -8908,7 +8828,7 @@ prevents the message to be forwarded to your friends. By - + @@ -8924,7 +8844,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -9028,10 +8948,6 @@ prevents the message to be forwarded to your friends. Public Publik - - Only For Your Friends - Endast för dina kontakter - Publish Signatures @@ -9095,29 +9011,29 @@ prevents the message to be forwarded to your friends. Spam-protection - + Comments: - Kommentarer: + TextLabel - + Distribution: - + Anti Spam: - + @@ -9128,45 +9044,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - Aldrig + Only friends nodes in group - + @@ -9176,7 +9092,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + @@ -9186,13 +9102,13 @@ prevents the message to be forwarded to your friends. Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + @@ -9207,7 +9123,7 @@ prevents the message to be forwarded to your friends. Set a descriptive description here - + @@ -9227,52 +9143,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + @@ -9282,7 +9198,7 @@ prevents the message to be forwarded to your friends. Posts - + @@ -9292,7 +9208,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9345,59 +9261,59 @@ prevents the message to be forwarded to your friends. Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + @@ -9455,13 +9371,13 @@ prevents the message to be forwarded to your friends. [Banned] - + Authentication - + @@ -9471,27 +9387,27 @@ prevents the message to be forwarded to your friends. anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9512,107 +9428,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Router-statistik + GroupBox - + ID - ID + Destination - Mål + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - Prenumererat + Popularity - Popularitet + Details - Detaljer + Unknown Peer - Okänd användare + Pending data items - + Unknown - + Yes - Ja + No - Nej + @@ -9620,42 +9536,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - Okänd användare + @@ -9842,7 +9758,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + @@ -9857,21 +9773,21 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + @@ -9893,18 +9809,18 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + @@ -9960,7 +9876,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - + @@ -9968,114 +9884,114 @@ p, li { white-space: pre-wrap; } Form - Formulär + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - Kopiera certifikatet till Urklipp + Save your Cert into a File - Spara certifikatet till fil + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - RetroShare-inbjudan + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Ditt certifikat är kopierat till Urklipp, klistra in och skicka det till din kontakt via e-post eller på något annat sätt. + Save as... - Spara som... + RetroShare Certificate (*.rsc );;All Files (*) - RetroShare Certifikat (*.rsc );;Alla filer (*) + Home - Hem + @@ -10084,32 +10000,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10119,12 +10035,12 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + @@ -10134,17 +10050,17 @@ p, li { white-space: pre-wrap; } Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + @@ -10155,33 +10071,33 @@ p, li { white-space: pre-wrap; } Send Invite - + Positive votes - + 0 - 0 + Negative votes - + <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: - + @@ -10203,17 +10119,17 @@ p, li { white-space: pre-wrap; } <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: - + [unverified] - + @@ -10228,97 +10144,97 @@ p, li { white-space: pre-wrap; } Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10352,90 +10268,90 @@ p, li { white-space: pre-wrap; } Create new circle - + Persons - + Votes - + Person - + Close - Stäng + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - 0 + Negative votes - + Usage statistics - + Circles - Cirklar + Circle name - + Membership - Medlemskap + Public Circles - Publika cirklar + Personal Circles - Privata cirklar + @@ -10451,27 +10367,27 @@ p, li { white-space: pre-wrap; } Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + @@ -10496,12 +10412,12 @@ p, li { white-space: pre-wrap; } Owner node name : - + Create new... - + @@ -10511,30 +10427,30 @@ 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + @@ -10556,12 +10472,12 @@ p, li { white-space: pre-wrap; } <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: - + @@ -10571,197 +10487,197 @@ p, li { white-space: pre-wrap; } ID - ID + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - Publik + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - Status: + Full member - + Invited by admin - + Subscription request pending - + unknown - okänd + Invited - + Subscription pending - + Member - + Edit Circle - Editera cirkeln + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10769,284 +10685,284 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - Kanaler + Forums - Forum + Posted - Postat + Chat - + Unknown - + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + @@ -11056,7 +10972,7 @@ These identities will soon be not supported anymore. Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -11064,7 +10980,7 @@ These identities will soon be not supported anymore. People - + @@ -11075,67 +10991,67 @@ These identities will soon be not supported anymore. Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + @@ -11155,7 +11071,7 @@ These identities will soon be not supported anymore. Really delete? - + @@ -11267,7 +11183,7 @@ These identities will soon be not supported anymore. RM - + @@ -11283,27 +11199,27 @@ These identities will soon be not supported anymore. Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11321,7 +11237,7 @@ These identities will soon be not supported anymore. GXSId - + @@ -11400,17 +11316,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11439,21 +11355,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - Rekommendera i ett meddelande till + @@ -11562,7 +11474,7 @@ Frigör mer diskutrymme och klicka OK. Open Messenger - + @@ -11692,22 +11604,22 @@ Frigör mer diskutrymme och klicka OK. Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11823,22 +11735,22 @@ Frigör mer diskutrymme och klicka OK. Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + @@ -11938,17 +11850,17 @@ Frigör mer diskutrymme och klicka OK. All addresses (mixed) - + All people - + My contacts - + @@ -12251,17 +12163,17 @@ Vill du spara meddelandet? Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + @@ -12276,73 +12188,73 @@ Vill du spara meddelandet? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12350,22 +12262,22 @@ Vill du spara meddelandet? Everyone - + Contacts - Kontakter + Nobody - + Accept encrypted distant messages from - + @@ -12427,10 +12339,6 @@ Vill du spara meddelandet? Edit Tag Redigera tagg - - Message - Meddelande - Distant messages: @@ -12444,7 +12352,7 @@ Vill du spara meddelandet? Mail - + @@ -12508,7 +12416,7 @@ Vill du spara meddelandet? Send Invite - + @@ -12558,12 +12466,12 @@ Vill du spara meddelandet? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -12594,12 +12502,12 @@ Vill du spara meddelandet? Hide the attachment pane - + Show the attachment pane - + @@ -13023,7 +12931,7 @@ Vill du spara meddelandet? <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> - + @@ -13120,7 +13028,7 @@ Vill du spara meddelandet? This message goes to a distant person. - + @@ -13154,12 +13062,12 @@ Vill du spara meddelandet? This message comes from a distant person. - + Mail - + @@ -13185,17 +13093,17 @@ Vill du spara meddelandet? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + @@ -13213,7 +13121,7 @@ Vill du spara meddelandet? Send Invite - + @@ -13249,12 +13157,12 @@ Vill du spara meddelandet? from - Från + Reply to invite - + @@ -13284,12 +13192,12 @@ Vill du spara meddelandet? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13362,22 +13270,6 @@ Vill du spara meddelandet? Name Namn - - Did I authenticated peer - Har jag autentiserat användaren - - - Did I sign his PGP key - Har jag signerat denna PGP-nyckel - - - Cert Id - Certifikat-ID - - - Last used - Använd senast - Clear @@ -13455,7 +13347,7 @@ Vill du spara meddelandet? - 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. @@ -13498,52 +13390,6 @@ För din säkerhet har din nyckelring säkerhetskopierats till filen Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Kan inte skapa säkerhetskopia. Kontrollera åtkomstbehörighet, diskutrymme etc. för pgp-mappen. - - Personal signature - Personligt signerad - - - PGP key signed by you - PGP-nyckel signerad av dig - - - Marginally trusted peer - Delvis betrodd - - - Fully trusted peer - Fullt betrodd - - - Untrusted peer - Ej betrodd - - - Last hour - Senaste timmen - - - Today - I dag - - - Never - Aldrig - - - %1 days ago - %1 dag(ar) sedan - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - har autentiserat dig. -Högerklicka och välj 'Skapa kontakt' för att kunna ansluta. - - - yourself - Du själv - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13552,34 +13398,34 @@ Högerklicka och välj 'Skapa kontakt' för att kunna ansluta. Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13610,7 +13456,7 @@ Reported error: Freeze - + @@ -13646,7 +13492,7 @@ Reported error: Log entries - + @@ -13666,22 +13512,22 @@ Reported error: Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13720,7 +13566,7 @@ Reported error: Chat Room - + @@ -13752,32 +13598,32 @@ Reported error: Ip security - + Friend Connected - Kontakten anslöt + Circles - Cirklar + Links - + Mails - + Chats - + @@ -13802,32 +13648,32 @@ Reported error: Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - Skiftlägeskänslig + @@ -13867,7 +13713,7 @@ 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> - + @@ -13897,12 +13743,12 @@ Reported error: Disable All Toasters - + Disable All Toaster temporarily - + @@ -13912,12 +13758,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13925,17 +13771,17 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + @@ -13945,7 +13791,7 @@ Reported error: Please enter your Retroshare passphrase - + @@ -14001,7 +13847,7 @@ Reported error: 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). - + @@ -14036,7 +13882,7 @@ Reported error: - 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 @@ -14048,13 +13894,13 @@ Reported error: <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14062,42 +13908,42 @@ Reported error: Dialog - + Profile info - + Name : - Namn : + 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: - + <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 - + @@ -14107,7 +13953,7 @@ Reported error: No trust - + @@ -14127,46 +13973,46 @@ Reported error: This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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> - + @@ -14176,32 +14022,32 @@ p, li { white-space: pre-wrap; } <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + @@ -14211,53 +14057,53 @@ p, li { white-space: pre-wrap; } Options - Alternativ + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - Använd som direkt källa, om tillgänglig + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + @@ -14283,23 +14129,23 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + @@ -14319,22 +14165,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + @@ -14349,22 +14195,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14441,7 +14287,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14471,7 +14317,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14527,53 +14373,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - Felkod + @@ -14581,68 +14427,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - Rykte + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14733,7 +14579,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14746,7 +14592,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14759,7 +14605,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14907,7 +14753,7 @@ före redigering! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14976,37 +14822,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -15029,7 +14875,7 @@ p, li { white-space: pre-wrap; } Widget for plugin %1 not found on plugins frame - + @@ -15047,12 +14893,12 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + @@ -15066,7 +14912,7 @@ p, li { white-space: pre-wrap; } [loading problem] - + @@ -15112,7 +14958,7 @@ 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> - + @@ -15186,29 +15032,25 @@ felaktigt utformade insticksprogram. PopupDistantChatDialog - - 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. - Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + @@ -15251,7 +15093,7 @@ felaktigt utformade insticksprogram. You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + @@ -15261,12 +15103,12 @@ felaktigt utformade insticksprogram. Submit a new Post - + Please add a Title - + @@ -15289,12 +15131,12 @@ felaktigt utformade insticksprogram. <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + @@ -15319,7 +15161,7 @@ felaktigt utformade insticksprogram. Links - + @@ -15352,7 +15194,7 @@ felaktigt utformade insticksprogram. Update Topic - + @@ -15365,7 +15207,7 @@ felaktigt utformade insticksprogram. Subscribe to Posted - + @@ -15381,7 +15223,7 @@ felaktigt utformade insticksprogram. Posted Description - + @@ -15391,7 +15233,7 @@ felaktigt utformade insticksprogram. New Posted - + @@ -15427,12 +15269,12 @@ felaktigt utformade insticksprogram. Vote up - + Vote down - + @@ -15452,12 +15294,12 @@ felaktigt utformade insticksprogram. New Comment: - + Comment Value - + @@ -15530,7 +15372,7 @@ felaktigt utformade insticksprogram. Submit a new Post - + @@ -15555,7 +15397,7 @@ felaktigt utformade insticksprogram. 1-10 - 1-10 + @@ -15565,10 +15407,6 @@ felaktigt utformade insticksprogram. Tabs Flikar - - Posted - Postat - Open each topic in a new tab @@ -15577,7 +15415,7 @@ felaktigt utformade insticksprogram. Links - + @@ -15639,13 +15477,13 @@ felaktigt utformade insticksprogram. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15740,7 +15578,7 @@ och där läsa in den med importfunktionen. Full keys available in your keyring: - + @@ -15957,51 +15795,35 @@ and open the Make Friend Wizard. och öppna Skapa kontakt-guiden - - Add file - Lägg till fil - - - Add files - Lägg till filer - - - Do you want to process the link ? - Vill du bearbeta den här länken? - - - Do you want to process %1 links ? - Vill du bearbeta %1 länkar? - Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16116,17 +15938,17 @@ and open the Make Friend Wizard. Posted not found - + Posted message not found - + Posted messages not found - + @@ -16136,22 +15958,22 @@ and open the Make Friend Wizard. Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + @@ -16171,7 +15993,7 @@ and open the Make Friend Wizard. Chat room not found - + @@ -16264,36 +16086,36 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersätt Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16325,20 +16147,12 @@ The error reported is:" Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Tunnel avvaktar... - - - Secured tunnel is working. You can talk! - Den säkra tunnel fungerar. Du kan prata! + @@ -16357,17 +16171,17 @@ Rapporterat fel är: %2 %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + @@ -16377,98 +16191,98 @@ Rapporterat fel är: %2 TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + @@ -16489,34 +16303,34 @@ Rapporterat fel är: %2 Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + This cert is malformed. Error code: - + The following has not been added to your download list, because you already have it: - + @@ -16526,127 +16340,127 @@ Security: no anonymous IDs unable to parse XML file! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16661,12 +16475,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16789,10 +16603,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16837,17 +16651,17 @@ p, li { white-space: pre-wrap; } RetroShare Page Display Style - + Where do you want to have the buttons for the page? - + ToolBar View - + @@ -16859,9 +16673,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16876,8 +16690,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -16943,12 +16757,12 @@ p, li { white-space: pre-wrap; } If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16956,12 +16770,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - Vill du verkligen sluta dela den här mappen? + @@ -17005,37 +16819,37 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + @@ -17045,12 +16859,12 @@ p, li { white-space: pre-wrap; } Peer name: - + Peer Id: - + @@ -17058,17 +16872,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -17086,74 +16900,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Enable Relay Connections - Aktivera reläanslutningar - - - Use Relay Servers - Använd reläservrar - - - Relay options - Reläalternativ - - - Number - Antal - - - Bandwidth per link - Bandbredd per länk - - - Total Bandwidth - Sammanlagd bandbredd - - - Friends - Kontakter - - - kB/s - kB/s - - - Friends of Friends - Kontakters kontakter - - - General - Allmänt - - - Total: - Totalt: - - - Relay Server Setup - Reläserverinställning - - - Add Server - Lägg till server - - - Server DHT Key - Serverns DHT-nyckel - - - Remove Server - Ta bort server - - - Relay - Relä + @@ -17161,7 +16908,7 @@ p, li { white-space: pre-wrap; } Download... - + @@ -17171,11 +16918,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - - - - Recommend in a message to - Rekommendera i ett meddelande till + @@ -17188,12 +16931,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + @@ -17203,7 +16946,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + @@ -17211,22 +16954,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -17239,22 +16982,22 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + @@ -17265,7 +17008,7 @@ p, li { white-space: pre-wrap; } Entire range - + @@ -17273,32 +17016,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - Filen finns redan. + What do you want to do? - Vad vill du göra? + Overwrite - Skriv över + Merge - Sammanfoga + Cancel - Avbryt + @@ -17321,12 +17064,12 @@ p, li { white-space: pre-wrap; } Destination: - + Right click to change download directory - + @@ -17362,7 +17105,7 @@ p, li { white-space: pre-wrap; } 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. Några fil- eller mappnamn innehöll förbjudna tecken. Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> ersätts med '_'. @@ -17371,7 +17114,7 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> ersätts med &apos Selected files : - + @@ -17382,26 +17125,22 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> ersätts med &apos <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + @@ -17411,64 +17150,64 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> ersätts med &apos Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - Specificera + Choose directory - Välj mapp + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + @@ -17488,32 +17227,32 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> ersätts med &apos Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + @@ -17523,7 +17262,7 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> ersätts med &apos <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> - + @@ -17568,26 +17307,6 @@ If you believe it is correct, remove the corresponding line from the file and re Om du tror att den är giltig, ta bort strängen från filen och öppna den på nytt med RetroShare. - - What do you want to do? - Vad vill du göra? - - - Overwrite - Skriv över - - - Merge - Sammanfoga - - - Cancel - Avbryt - - - File already exists. - Filen finns redan. - RsDownloadListModel @@ -17595,128 +17314,119 @@ Om du tror att den är giltig, ta bort strängen från filen och öppna den på Name i.e: file name - Namn + Size i.e: file size - Storlek + Completed - Slutfört + Speed i.e: Download speed - Hastighet + Progress / Availability i.e: % downloaded - Förlopp / Tillgänglighet + Sources i.e: Sources - Källor + Status - Status + Speed / Queue position - Hastighet / Köposition + Remaining - Återstår + Download time i.e: Estimated Time of Arrival / Time left - Nedladdningstid + Hash - Hash-summa + Last Time Seen i.e: Last Time Receiced Data - Senast sedd + Path i.e: Where file is saved - Sökväg + Failed - Misslyckades + Okay - OK + Waiting - Väntar + Downloading - Laddar ner + Complete - Slutfört + Queued - Köad + Paused - Pausad + Checking... - Kontrollerar... + Unknown - - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Bilden är för stor för överföring. -Vill du krympa bilden till %1x%2 pixlar? + @@ -17743,7 +17453,7 @@ Vill du krympa bilden till %1x%2 pixlar? filename - + @@ -17753,7 +17463,7 @@ Vill du krympa bilden till %1x%2 pixlar? level - + @@ -17763,7 +17473,7 @@ Vill du krympa bilden till %1x%2 pixlar? style - + @@ -17773,7 +17483,7 @@ Vill du krympa bilden till %1x%2 pixlar? stylesheet - + @@ -17783,17 +17493,13 @@ Vill du krympa bilden till %1x%2 pixlar? language - + Sets RetroShare's language. Anger RetroShares språk. - - RetroShare Usage Information - Information om RetroShares användning - Unable to open log file '%1': %2 @@ -17803,7 +17509,7 @@ Vill du krympa bilden till %1x%2 pixlar? Invalid operating mode specified: - + @@ -17823,47 +17529,47 @@ Vill du krympa bilden till %1x%2 pixlar? opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17872,7 +17578,7 @@ Vill du krympa bilden till %1x%2 pixlar? Registry Access Error. Maybe you need Administrator right. - + @@ -18203,7 +17909,7 @@ Vill du krympa bilden till %1x%2 pixlar? Peer Name: - + @@ -18220,33 +17926,33 @@ Vill du krympa bilden till %1x%2 pixlar? but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -18384,7 +18090,7 @@ Vill du krympa bilden till %1x%2 pixlar? Missing/Damaged certificate. Not a real Retroshare user. - + @@ -18394,12 +18100,12 @@ Vill du krympa bilden till %1x%2 pixlar? Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -18412,7 +18118,7 @@ Vill du krympa bilden till %1x%2 pixlar? Network Mode - Nätverksläge + @@ -18458,7 +18164,7 @@ Vill du krympa bilden till %1x%2 pixlar? NAT - + @@ -18496,15 +18202,11 @@ Vill du krympa bilden till %1x%2 pixlar? Known / Previous IPs: Kända / Tidigare IP: - - Show Discovery information in statusbar - Visa upptäcktsinformation i statusfältet - 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. Om du avmarkerar detta, kan RetroShare endast avgör ditt IP när du ansluter till någon. Att låta det här vara markerat @@ -18528,38 +18230,38 @@ bra om du sitter bakom en brandvägg eller en VPN-tunnel. Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + @@ -18569,7 +18271,7 @@ bra om du sitter bakom en brandvägg eller en VPN-tunnel. I2P incoming ok - + @@ -18579,33 +18281,33 @@ bra om du sitter bakom en brandvägg eller en VPN-tunnel. Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18614,133 +18316,133 @@ bra om du sitter bakom en brandvägg eller en VPN-tunnel. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - okänd + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + @@ -18750,159 +18452,159 @@ Also check your ports! 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Starta + Restart - + Stop - Stopp + BOB status - + Incoming - Inkommande + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18916,101 +18618,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - Relä + Enable Relay Connections - Aktivera reläanslutningar + Use Relay Servers - Använd reläservrar + Relay options - Reläalternativ + Number - Antal + Bandwidth per link - Bandbredd per länk + Total Bandwidth - Sammanlagd bandbredd + Friends - Kontakter + Friends of Friends - Kontakters kontakter + General - Allmänt + Total: - Totalt: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Reläserverinställning + Add Server - Lägg till server + Server DHT Key - Serverns DHT-nyckel + Remove Server - Ta bort server + - <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>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> - + @@ -19025,18 +18727,18 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + IP blacklist - + IP range - + @@ -19050,7 +18752,7 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + @@ -19068,124 +18770,124 @@ If you have issues connecting over Tor check the Tor logs too. IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -19198,82 +18900,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -19296,12 +18998,12 @@ If you have issues connecting over Tor check the Tor logs too. Auto-download recommended files - + Require whitelist - + @@ -19324,12 +19026,12 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + @@ -19337,7 +19039,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - Formulär + @@ -19345,7 +19047,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -19388,32 +19090,32 @@ Välj de kontakter du vill dela kanalen med. Shared directory - + Visible name - + Access - + Visibility - Synlighet + Add new - + Cancel - Avbryt + @@ -19438,52 +19140,52 @@ Välj de kontakter du vill dela kanalen med. Choose directory - Välj mapp + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + @@ -19498,7 +19200,7 @@ Välj de kontakter du vill dela kanalen med. Choose a directory to share - + @@ -19532,11 +19234,7 @@ Välj de kontakter du vill dela kanalen med. Configure shared directories - - - - Search files - Sök filer + @@ -19608,18 +19306,10 @@ Välj de kontakter du vill dela kanalen med. Send retroshare Links Skicka RetroShare-länk - - Send retroshare Links to Cloud - Skicka RetroShare-länkar till molnet - - - Add Links to Cloud - Lägg till länkar i molnet - Some files have been omitted - + @@ -19655,17 +19345,17 @@ Välj de kontakter du vill dela kanalen med. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19688,7 +19378,7 @@ Välj de kontakter du vill dela kanalen med. New Msg - + @@ -19699,22 +19389,22 @@ Välj de kontakter du vill dela kanalen med. Message arrived - + Download - Ladda ner + Download complete - + Lobby - + @@ -19757,7 +19447,7 @@ Välj de kontakter du vill dela kanalen med. Default - Standard + @@ -19765,20 +19455,16 @@ Välj de kontakter du vill dela kanalen med. Sound is off, click to turn it on - + Sound is on, click to turn it off - + SplashScreen - - Load profile - Läs in profil - Load configuration @@ -19797,15 +19483,11 @@ Välj de kontakter du vill dela kanalen med. RetroShare RetroShare - - Login - Inloggning - Password - Lösenord + @@ -19831,9 +19513,9 @@ Aktuella identiteter/platser påverkas ej. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19848,7 +19530,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -19864,7 +19546,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19873,7 +19555,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19882,7 +19564,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19956,17 +19638,17 @@ This choice can be reverted in settings. Turtle Router - + Global Router - + Gxs Transport - + @@ -20073,7 +19755,7 @@ This choice can be reverted in settings. Connected: I2P - + @@ -20088,22 +19770,22 @@ This choice can be reverted in settings. TCP-in - + TCP-out - + inbound connection - + outbound connection - + @@ -20113,32 +19795,32 @@ This choice can be reverted in settings. Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -20158,7 +19840,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20171,7 +19853,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20267,7 +19949,7 @@ p, li { white-space: pre-wrap; } Remove this item - + @@ -20409,12 +20091,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -20422,58 +20104,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20481,28 +20163,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20520,98 +20202,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Automatically share incoming directory (Recommended) - Dela inkommande automatiskt (Rekommenderas) + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - Bläddra + Partials Directory - + Maximum uploads per friend (0 = no limit) - + @@ -20626,12 +20308,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Allow direct download: - + @@ -20656,50 +20338,50 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Ja + No - Nej + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + @@ -20709,32 +20391,32 @@ 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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - Filer + @@ -20796,21 +20478,6 @@ p, li { white-space: pre-wrap; } Completed Slutfört - - Speed - i.e: Download speed - Hastighet - - - Progress / Availability - i.e: % downloaded - Förlopp / Tillgänglighet - - - Sources - i.e: Sources - Källor - Status @@ -20826,16 +20493,6 @@ p, li { white-space: pre-wrap; } Remaining Återstår - - Download time - i.e: Estimated Time of Arrival / Time left - Nedladdningstid - - - Peer - i.e: user name - Användare - Progress @@ -20890,7 +20547,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Användare + @@ -21012,7 +20669,7 @@ 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> - + @@ -21039,83 +20696,16 @@ p, li { white-space: pre-wrap; } Choose directory Välj mapp - - Failed - Misslyckades - - - Okay - OK - - - Waiting - Väntar - - - Downloading - Laddar ner - - - Complete - Slutfört - - - Queued - Köad - - - Paused - Pausad - - - Checking... - Kontrollerar... - - - Unknown - Okänt - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - Om hash-summan från den nedladdade filen -inte motsvarar hash-summan som annonserats -från filkällan, är filen troligtvis korrupt. - -RetroShare kommer att be källan om en -detaljerad kartläggning av data. Den kommer -att jämföra och ogiltigförklara korrupta block, -och ladda ner dem igen - -Försök ha tålamod! - - - - Transferring - Överför - - - Uploading - Laddar upp - Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + @@ -21175,15 +20765,6 @@ Försök ha tålamod! Please enter a new--and valid--filename Ange nytt giltigt filnamn - - Last Time Seen - i.e: Last Time Receiced Data - Senast sedd - - - UserID - AnvändarID - @@ -21291,11 +20872,6 @@ Försök ha tålamod! File Transfers Filöverföringar - - Path - i.e: Where file is saved - Sökväg - Path @@ -21309,12 +20885,12 @@ Försök ha tålamod! Could not delete preview file - + Try it again? - + @@ -21339,21 +20915,17 @@ Försök ha tålamod! %1 tunnels - + Anonymous tunnel 0x - - - - version: - version: + Files - Filer + @@ -21385,7 +20957,7 @@ Försök ha tålamod! Empty - + @@ -21396,7 +20968,7 @@ Försök ha tålamod! Friends Directories [updating...] - + @@ -21406,7 +20978,7 @@ Försök ha tålamod! My Directories [updating...] - + @@ -21416,7 +20988,7 @@ Försök ha tålamod! # Files - + @@ -21436,22 +21008,22 @@ Försök ha tålamod! Access - + Visibility - Synlighet + Column %1 - + Row %1 - + @@ -21500,7 +21072,7 @@ Försök ha tålamod! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21546,12 +21118,12 @@ Försök ha tålamod! Anonymous tunnels - + Authenticated tunnels - + @@ -21561,7 +21133,7 @@ Försök ha tålamod! Turtle Router - + @@ -21609,7 +21181,7 @@ Försök ha tålamod! Forwarded data - + @@ -21738,56 +21310,52 @@ Försök ha tålamod! Enable Retroshare WEB Interface - + Web parameters - + Port: - Port: + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - Port : + <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 - + @@ -22413,7 +21981,7 @@ Försök ha tålamod! Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -22421,134 +21989,133 @@ Försök ha tålamod! Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - Använd senast + Personal signature - Personligt signerad + Marginally trusted peer - Delvis betrodd + Fully trusted peer - Fullt betrodd + Untrusted peer - Ej betrodd + Yes - Ja + No - Nej + Last hour - Senaste timmen + Today - I dag + Never - Aldrig + %1 days ago - %1 dag(ar) sedan + Accepted - + - - + PGP key signed by you - PGP-nyckel signerad av dig + has authenticated you. Right-click and select 'make friend' to be able to connect. - har autentiserat dig. -Högerklicka och välj 'Skapa kontakt' för att kunna ansluta. + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_tr.qm b/retroshare-gui/src/lang/retroshare_tr.qm index f196b3007..eec60f178 100644 Binary files a/retroshare-gui/src/lang/retroshare_tr.qm and b/retroshare-gui/src/lang/retroshare_tr.qm differ diff --git a/retroshare-gui/src/lang/retroshare_tr.ts b/retroshare-gui/src/lang/retroshare_tr.ts index b2db4e40f..1bcdc7444 100644 --- a/retroshare-gui/src/lang/retroshare_tr.ts +++ b/retroshare-gui/src/lang/retroshare_tr.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + RetroShare sürümü @@ -28,7 +26,7 @@ About - Hakkında + Hakkında @@ -36,52 +34,52 @@ Form - Form + Form About - Hakkında + Hakkında Copy Info - + Bilgileri Kopyala close - + kapat Max score: %1 - + En yüksek not: %1 Score: %1 - + Not: %1 Level: %1 - + Düzey: %1 About RetroShare - RetroShare Hakkında + RetroShare Hakkında Have fun ;-) - + Keyfinize bakın ;-) Only Hidden Node - + Yalnızca Gizli Düğüm @@ -89,7 +87,7 @@ Add Comment - Yorum Ekleyin + Yorum Ekle @@ -97,7 +95,7 @@ File type(extension): - Dosya tipi (uzantı): + Dosya türü (uzantı): @@ -116,9 +114,9 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - Malesef bu dosya için varsayılan sistem komutu belirlenemedi + Maalesef bu dosya için varsayılan sistem komutu belirlenemedi @@ -132,17 +130,17 @@ Search Criteria - Arama Ölçütleri + Arama Ölçütü Add a further search criterion. - Başka bir arama ölçütü ekleyin. + Başka bir arama ölçütü ekler. Reset the search criteria. - Arama ölçütlerini sıfırlayın. + Arama ölçütlerini sıfırlar. @@ -157,12 +155,12 @@ Perform the advanced search. - Gelişmiş arama yapın. + Gelişmiş arama yapar. Search - Ara + Arama @@ -236,7 +234,7 @@ Random - Rasgele + Rastgele @@ -316,7 +314,7 @@ Authenticated Comments - Doğrulanmış Yorumlar + Kimliği Doğrulanmış Yorumlar @@ -326,14 +324,14 @@ Publish with Identity - Kimliğinizle Yayınlayın + Kimlikle Yayınla <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -349,12 +347,12 @@ p, li { white-space: pre-wrap; } Add Photos - Fotoğraf Ekleyin + Fotoğraf Ekle Publish Album - Albümü Yayınlayın + Albümü Yayınla @@ -369,12 +367,12 @@ p, li { white-space: pre-wrap; } Where were these taken? - Bunlar nerede çekildi ? + Bu fotoğraflar nerede çekildi ? Load Album Thumbnail - Albüm Önizlemesi Yükleyin + Albüm Küçük Görseli Yükle @@ -388,7 +386,7 @@ p, li { white-space: pre-wrap; } Album Thumbnail - Albüm Önizlemesi + Albüm Küçük Görseli @@ -423,7 +421,7 @@ p, li { white-space: pre-wrap; } When - Ne zaman + Ne Zaman @@ -443,7 +441,7 @@ p, li { white-space: pre-wrap; } Publish Identity - Kimliğinizi Yayınlayın + Kimliği Yayınla @@ -455,33 +453,33 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;"> Resimleri eklemek için sürükle ve bırak. Aşağıdaki detayları düzenlemek için resmi tıklayınız.</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:8pt; font-weight:600;"> Görsel eklemek için sürükleyip bırakın. Ayrıntılarını düzenlemek istediğiniz görsele tıklayın.</span></p></body></html> Add Photo - Fotoğraf Ekleyin + Fotoğraf Ekle Edit Photo - Fotoğrafı Düzenleyin + Fotoğrafı Düzenle Delete Photo - Fotoğrafı Silin + Fotoğrafı Sil Publish Photos - Fotoğrafları Yayınlayın + Fotoğrafları Yayınla @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -540,22 +538,22 @@ p, li { white-space: pre-wrap; } (Needs restart) - + (Yeniden başlatma gerekir) Style - Stil + Biçem Choose RetroShare's interface style - RetroShare arayüz biçimini seçin + RetroShare arayüz biçemini seçin Style Sheet - Stil Sayfası + Biçem Sayfası @@ -590,7 +588,7 @@ p, li { white-space: pre-wrap; } Choose the style of Tool Buttons. - Araç düğmelerinin biçimini seçin. + Araç düğmelerinin biçemini seçin. @@ -625,47 +623,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + Bildirim Devre Dışı Bırakma Görüntülensin Show Sound Status - + Ses Durumu Görüntülensin Show Network Rate Status - + Ağ Hızı Durumu Görüntülensin Show Discovery Status - + Keşif Durumu Görüntülensin Show DHT Status - + DHT Durumu Görüntülensin Show Hashing Status - + Karma Durumu Görüntülensin Show NAT Status - + NAT Durumu Görüntülensin Show Peer Status - + Eş Durumu Görüntülensin Show Status ComboBox - + Durum Açılan Kutusu Görüntülensin @@ -680,7 +678,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + İşletim Kipi Durumu Görüntülensin @@ -695,17 +693,17 @@ p, li { white-space: pre-wrap; } Main page items: - + Ana sayfa ögeleri: Buttons - + Düğmeler Item list - + Öge listesi @@ -725,7 +723,7 @@ 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. - Uyarı: Buradaki hizmetler deneme aşamasındadır. Bu hizmetleri geliştirmemize yardımcı olun. + Uyarı: Buradaki hizmetler henüz deneme aşamasındadır. Bu hizmetleri geliştirmemize yardımcı olun. Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğimizde KAYBOLACAK. @@ -769,7 +767,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Cancel Download - İndirmeyi İptal Edin + İndirmeyi İptal Et @@ -782,7 +780,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Change Avatar - Avatarınızı Değiştirin + Avatarı Değiştir @@ -792,22 +790,22 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Add Avatar - Avatar Ekleyin + Avatar Ekle Remove - Silin + Sil Set your Avatar picture - Avatarınızı Belirleyin + Avatar görselinizi ayarlayın Load Avatar - Avatar Yükleyin + Avatar Yükle @@ -831,7 +829,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim N/A - Geçersiz + Kullanılamıyor @@ -870,7 +868,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Style - Stil + Biçem @@ -935,12 +933,12 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Average - Ortalama + Ortalama Total - + Toplam @@ -953,7 +951,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim ID - Kimlik + Kod @@ -1036,7 +1034,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Type: - Tip: + Tür: @@ -1061,17 +1059,17 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Legend: - + Gösterge: Current - + Anlık Total - + Toplam @@ -1109,29 +1107,25 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim ChatLobbyDialog - - Participants - Katılımcılar - Name - Ad + Ad Change nick name - Takma adı değiştirin + Takma adı değiştir Mute participant - Katılımcının sesini kapatın + Katılımcının sesini kapat Ban this person (Sets negative opinion) - Bu kişiyi engelle (Negatif değerlendirme ayarlar) + Bu kişiyi engelle (Olumsuz olarak değerlendirir) @@ -1168,10 +1162,6 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Topic: %1 Konu: %1 - - Lobby management - Oda yönetimi - %1 changed his name to: %2 @@ -1195,43 +1185,43 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Start private chat - Özel sohbet başlatın + Özel sohbet başlat Give neutral opinion - + Kararsız olarak değerlendir Give positive opinion - + Olumlu olarak değerlendir Show author in people tab - + Kişiler sekmesinde yazar görüntülensin Search - + Arama Leave this chat room (Unsubscribe) - + Bu sohbet odasından çıkın (Abonelikten ayrılın) Welcome to chat room %1 - + %1 sohbet odasına hoş geldiniz Room chat - + Oda sohbeti @@ -1261,39 +1251,39 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Cannot start distant chat - Uzak sohbet başlatılamıyor + Uzak sohbet başlatılamadı Distant chat cannot be initiated: - Uzak sohbet başlatılamıyor: + Uzak sohbet başlatılamadı: %1 has left the room. - + %1 odadan ayrıldı. Chat room management - + Sohbet odası yönetimi %1 joined the room. - + %1 odaya katıldı. Unsubscribe from chat room - + Sohbet odasının aboneliğinden ayrılın Do you want to unsubscribe to this chat room? - + Bu sohbet odasının aboneliğinden ayrılmak istiyor musunuz? @@ -1301,7 +1291,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Show Chat Lobby - Sohbet Odasını Görüntüleyin + Sohbet Odasını Görüntüle @@ -1309,7 +1299,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Chats - + Sohbetler @@ -1340,7 +1330,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Remove All - Hepsini Kaldırın + Tümünü Kaldır @@ -1364,106 +1354,108 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Private Subscribed chat rooms - + Abone Olduğunuz Özel Sohbet Odaları Public Subscribed chat rooms - + Abone Olduğunuz Herkese Açık Sohbet Odaları Private chat rooms - + Özel Sohbet Odaları Public chat rooms - + Herkese Açık Sohbet Odaları <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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;Sohbet Odaları</h1> <p>Sohbet odaları merkezi olmayan sohbet yerleridir ve IRC gibi çalışır. İsimsiz kimlikle ve arkadaş olmanız gerekmeden tonlarca insanla konuşmanızı sağlar.</p> <p>Bir sohbet odası herkese açık (arkadaşlarınız görebilir) ya da özel (siz çağırmadıkça arkadaşlarınız göremez <img src=":/images/add_24x24.png" width=%2/>). Özel bir odaya çağrıldığınızda içinde arkadaşlarınızın olup olmadığını görebilirsiniz.</p> <p>Soldaki listede arkadaşlarınızın bulunduğu sohbet odalarını görebilirsiniz. Ayrıca <ul> <li>Sağ tıklayarak yeni bir sohbet odası oluşturabilirsiniz.</li> <li>Bir sohbet odasına girmek ve arkadaşlarınıza göstermek için çift tıklayın</li> </ul> Not: Sohbet odalarının bilgisayarınızda doğru şekilde çalışması için bilgisayarınızın tarih ve saati doğru olmalıdır. Bu nedenle sistem ayarlarınızı denetleyin! </p> Create chat room - + Sohbet odası oluştur Leave this room - + Bu odadan ayrılın Create a non anonymous identity and enter this room - + İsimsiz olmayan bir kimlik oluşturup bu odaya katılın Create an identity and enter this chat room - + Bir kimlik oluşturun ve bu sohbet odasına katılın Enter this chat room - + Bu sohbet odasına katılın Enter this chat room as... - + Bu sohbet odasına şu kimlikle katılın... Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare bağlantısını kopyala You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + Varsayılan kimliğiniz isimsiz olduğundan ve isimsiz kimlikler bu sohbet odasında kabul edilmediğinden bu sohbet odasına katılamazsınız. You're not subscribed to this chat room; Double click-it to enter and chat. - + Bu odaya abone değilsiniz; Katılıp sohbet etmek için çift tıklayın. You will need to create a non anonymous identity in order to join this chat room. - + Bu sohbet odasına katılabilmek için isimsiz olmayan bir kimlik oluşturmalısınız. You will need to create an identity in order to join chat rooms. - + Sohbet odalarına katılabilmek için bir kimlik oluşturmalısınız. No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + Bir sohbet odası seçmemişsiniz. +Ayrıntıları görmek için soldan bir sohbet odası seçin. +Odaya katılıp sohbet etmek için çift tıklayın. %1 invites you to chat room named %2 - + %1 sizi %2 adlı sohbet odasına çağırıyor Choose a non anonymous identity for this chat room: - + Bu sohbet odası için isimsiz olmayan bir kimlik seçin: Choose an identity for this chat room: - + Bu sohbet odası için bir kimlik seçin: @@ -1474,17 +1466,17 @@ Double click a chat room to enter and chat. [No topic provided] - [Konu Açılmamış] + [Konu belirtilmemiş] Selected lobby info - Seçilen oda bilgileri + Seçilmiş oda bilgileri Private - Kişisel + Özel @@ -1494,17 +1486,17 @@ Double click a chat room to enter and chat. Anonymous IDs accepted - İsimsiz Kimlikler Kabul Edilir + İsimsiz kodlar kullanılabilir Remove Auto Subscribe - Otomatik Üye Alımını Kaldırın + Otomatik Aboneliği Kaldır Add Auto Subscribe - Otomatik Üye Alımını Etkinleştirin + Otomatik Aboneliği Ekle @@ -1539,17 +1531,17 @@ Double click a chat room to enter and chat. Chat rooms - + Sohbet odaları Chat room Name: - + Sohbet Odası Adı: Chat room Id: - + Sohbet Odası Kodu: @@ -1559,7 +1551,7 @@ Double click a chat room to enter and chat. Type: - Tip: + Tür: @@ -1589,14 +1581,14 @@ Double click a chat room to enter and chat. No anonymous IDs - İsimsiz Kimlikler Kabul Edilmez + İsimsiz kodlar kullanılamaz Show - Görüntüleyin + Görüntüle @@ -1608,7 +1600,7 @@ Double click a chat room to enter and chat. Chats - + Sohbetler @@ -1616,38 +1608,38 @@ Double click a chat room to enter and chat. Remove Item - Ögeyi Kaldırın + Ögeyi Kaldır Write a quick Message - Hızlı İleti yazın + Hızlı İleti Yazma Send Mail - Posta Gönderin + Posta Gönder Write Message - İleti Yazın + İleti Yaz Start Chat - Sohbete Başlayın + Sohbete Başla Send - Gönderin + Gönder Cancel - İptal Edin + İptal Et @@ -1686,7 +1678,7 @@ Double click a chat room to enter and chat. Accept encrypted distant chat from - Şifreli uzak sohbet formu kabul edilir + Şuradan şifreli uzak sohbeti kabul et @@ -1696,22 +1688,22 @@ Double click a chat room to enter and chat. Enable Emoticons Private Chat - Özel Sohbette İfadeleri Etkinleştirin + Özel Sohbette İfadeler Kullanılabilsin Enable Emoticons Group Chat - Grup Sohbetinde Emoticon Kullanılsın + Grup Sohbetinde İfadeler Kullanılabilsin Enable custom fonts - Özel yazı tiplerini kullanılsın + Özel yazı türleri kullanılsın Enable custom font size - Özel yazı tipi boyutu kullanılsın + Özel yazı boyutu kullanılsın @@ -1736,17 +1728,17 @@ Double click a chat room to enter and chat. Send message with Ctrl+Return - Ctrl+Return ile ileti gönderin + Ctrl+Return ile ileti gönderilsin Send as plain text by default - Varsayılan olarak düz metin olarak gönder + Varsayılan olarak düz metin olarak gönderilsin Load embedded images - + Gömülü görselleri yükle @@ -1761,7 +1753,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + Yazıyor bildirimleri gönderilmesin @@ -1771,17 +1763,17 @@ Double click a chat room to enter and chat. Open Window for new chat - Sohbeti yeni pencerede açın + Sohbet yeni pencerede açılsın Grab Focus when chat arrives - Bir sohbet geldiğinde otomatik olarak odaklan + Bir sohbet geldiğinde otomatik olarak odaklanılsın Use a single tabbed window - Tek sekmeli pencere kullanın + Tek sekmeli pencere kullanılsın @@ -1791,17 +1783,17 @@ Double click a chat room to enter and chat. Chat Font - Sohbet Yazı Tipi + Sohbet Yazı Türü Change Chat Font - Sohbet Yazı Tipini Değiştirin + Sohbet Yazı Türünü Değiştir Chat Font: - Sohbet Yazı Tipi: + Sohbet Yazı Türü: @@ -1812,21 +1804,21 @@ Double click a chat room to enter and chat. Style - Stil + Biçem Style: - + Biçem: Variant: - + Çeşit: @@ -1843,7 +1835,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + Sohbet için varsayılan yazı türünü seçin. @@ -1900,10 +1892,6 @@ Double click a chat room to enter and chat. /me is sending a message with /me /me şununla bir ileti gönderiyorum /me - - Chat - Sohbet - <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> @@ -1937,7 +1925,7 @@ Double click a chat room to enter and chat. Search by default - Varsayılan Arama + Varsayılan arama @@ -1947,12 +1935,12 @@ Double click a chat room to enter and chat. Whole Words - Tam Sözcükler + Sözcüklerin Tümü Move to cursor - İmlece taşıyın + İmlece taşı @@ -2002,7 +1990,7 @@ Double click a chat room to enter and chat. PGP id : - PGP Kimlği: + PGP Kodu: @@ -2012,7 +2000,7 @@ Double click a chat room to enter and chat. Chats - + Sohbetler @@ -2020,32 +2008,32 @@ Double click a chat room to enter and chat. Standard style for group chat - Standart grup sohbeti stili + Standart grup sohbeti biçemi Compact style for group chat - Küçük boyutlı grup sohbeti stili + Küçük boyutlu grup sohbeti biçemi Standard style for private chat - Standart özel sohbet stili + Standart özel sohbet biçemi Compact style for private chat - Küçük boyutlı özel sohbet stili + Küçük boyutlu özel sohbet biçemi Standard style for history - Standart geçmiş stili + Standart geçmiş biçemi Compact style for history - Küçük boyutlı geçmiş stili + Küçük boyutlu geçmiş biçemi @@ -2053,7 +2041,7 @@ Double click a chat room to enter and chat. Show Chat - Sohbeti Görüntüleyin + Sohbeti Görüntüle @@ -2069,12 +2057,12 @@ Double click a chat room to enter and chat. Close - Kapatın + Kapat Send - Gönderin + Gönder @@ -2089,22 +2077,22 @@ Double click a chat room to enter and chat. Italic - Eğik + Yatık Insert emoticon - + Emoticon ekle Attach a Picture - Görsel Ekleyin + Görsel Ekle <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> @@ -2114,33 +2102,33 @@ Double click a chat room to enter and chat. Clear Chat History - Sohbet Geçmişini Temizleyin + Sohbet Geçmişini Temizle Disable Emoticons - Emoticon'ları Kaldırın + Emoticon'ları Kaldır Save Chat History - Sohbet Geçmişini Kaydedin + Sohbet Geçmişini Kaydet Browse Message History - İleti Geçmişine Gözatın + İleti Geçmişine Gözat Browse History - Geçmişe Gözatın + Geçmişe Gözat Delete Chat History - Sohbet Geçmişini Silin + Sohbet Geçmişini Sil @@ -2150,12 +2138,12 @@ Double click a chat room to enter and chat. Choose font - Yazı tipi seçin + Yazı türü seçin Reset font to default - Varsayılan yazı tipi + Varsayılan yazı türüne çevir @@ -2190,7 +2178,7 @@ Double click a chat room to enter and chat. Send as plain text without font. - Yazı tipi olmadan düz metin olarak gönder + Yazı türü olmadan düz metin olarak gönder @@ -2201,7 +2189,7 @@ Double click a chat room to enter and chat. Show Hidden Images - + Gizli Görselleri Görüntüle @@ -2220,32 +2208,32 @@ after HTML conversion. Warning: This message is too big of %1 characters after HTML conversion. Uyarı: HTML dönüşümünden sonra bu iletide %1 -karakter fazla. +karakter fazla olacak. Choose your font. - + Yazı türünüzü seçin. Do you really want to physically delete the history? - Geçmişi tamamen silmek istediğinizden emin misiniz? + Geçmişi tamamen silmek istediğinize emin misiniz? Add Extra File - Fazladan Dosya Ekleyin + Başka Dosya Ekle Load Picture File - Görsel Dosyası Yükleyin + Görsel Dosyası Yükle Save as... - Farklı kaydedin... + Farklı kaydet... @@ -2260,11 +2248,7 @@ karakter fazla. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - Gönderdiğiniz iletiler arkadaşınız çevirimiçi olduktan sonra iletilecektir + Gönderdiğiniz iletiler Arkadaşınız tekrar Çevirimiçi olunca iletilecektir. @@ -2284,19 +2268,19 @@ karakter fazla. Find Case Sensitively - B/K Harfe Duyarlı Arayın + B/K Harfe Duyarlı Arama Find Whole Words - Tam Sözcükleri Bulun + Sözcüklerin Tümüne Uyan Move To Cursor - İmlece Taşıyın + İmlece Taşı @@ -2326,12 +2310,12 @@ karakter fazla. Set text font & color - Metin yazı tipi ve rengini ayarlayın + Metin yazı türü ve rengini ayarlayın Attach a File - Dosya Ekleyin + Dosya Ekle @@ -2352,18 +2336,19 @@ karakter fazla. Person id: - + Kişi kodu: Double click on it to add his name on text writer. - + +Adını yazı alanına eklemek için üstüne çift tıklayın. Unsigned - + İmzalanmamış @@ -2378,7 +2363,7 @@ Double click on it to add his name on text writer. <b>Return to marked text</b><br><i>Ctrl+M</i> - <b>İşaretli metne geri dönün</b><br><i>Ctrl+M</i> + <b>İşaretli metne geri dön</b><br><i>Ctrl+M</i> @@ -2388,7 +2373,7 @@ Double click on it to add his name on text writer. Don't stop to color after - Şuradan sonra renklendirmeyi sürdür + Şuradan sonra renklendirme durdurulmasın @@ -2406,7 +2391,7 @@ Double click on it to add his name on text writer. Empty Circle - Çevrenizi Sıfırlayın + Çevreyi Sıfırla @@ -2430,7 +2415,7 @@ Double click on it to add his name on text writer. IDs - Kimlikler + Kodlar @@ -2456,7 +2441,7 @@ Double click on it to add his name on text writer. ID - Kimlik + Kod @@ -2467,7 +2452,7 @@ Double click on it to add his name on text writer. Friends of Friends - Arkadaşlarımın Arkadaşları + Arkadaşların Arkadaşları @@ -2492,22 +2477,22 @@ Double click on it to add his name on text writer. Share Category - Kategoriyi Paylaşın + Kategoriyi Paylaş Create Personal Circle - Kişisel Çevre Oluşturun + Kişisel Çevre Oluştur Create External Circle - Dış Çevre Oluşturun + Dış Çevre Oluştur Edit Circle - Çevreyi Düzenleyin + Çevreyi Düzenle @@ -2548,10 +2533,6 @@ Double click on it to add his name on text writer. Details Ayrıntılar - - Peer Address - Eş Adresi - @@ -2566,12 +2547,12 @@ Double click on it to add his name on text writer. Node info: - + Düğüm bilgisi: Current address: - + Geçerli adres: @@ -2584,10 +2565,6 @@ Double click on it to add his name on text writer. Port Kapı - - Addresses list - Adres listesi - Include signatures @@ -2617,10 +2594,6 @@ Double click on it to add his name on text writer. Not connected Bağlı değil - - Peer Addresses - Eş Adresleri - Retroshare node details @@ -2649,22 +2622,22 @@ Double click on it to add his name on text writer. Node ID : - Düğüm Kimliği : + Düğüm Kodu : Name: - Ad: + Ad: Status message: - + Durum iletisi: List of known addresses: - + Bilinen adreslerin listesi: @@ -2690,7 +2663,7 @@ Double click on it to add his name on text writer. <li>a <b>node ID</b> and <b>name</b> - <li>bir <b>düğüm kimliği</b> ve <b>ad</b> + <li>bir <b>düğüm kodu</b> ve <b>ad</b> @@ -2710,7 +2683,7 @@ Double click on it to add his name on text writer. <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>Düğümün <span style=" font-weight:600;">OpenSSL</span> sertifikası kimliği. Yukarıdaki <span style=" font-weight:600;">PGP</span> anahtarı tarafından imzalanmıştır. </p></body></html> + <html><head/><body><p>Düğümün <span style=" font-weight:600;">OpenSSL</span> sertifikası kodu. Yukarıdaki <span style=" font-weight:600;">PGP</span> anahtarı tarafından imzalanmıştır. </p></body></html> @@ -2754,7 +2727,8 @@ Double click on it to add his name on text writer. &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &Eposta yoluyla Davetiye gönderin +(Arkadaşınıza RetroShare indirme bilgilerini içeren bir e-posta gönderilir) @@ -2780,12 +2754,12 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + Dosyadan arkadaşınızın Sertifikasını yükleyin Open certificate - + Sertifika yükleyin @@ -2800,12 +2774,12 @@ Double click on it to add his name on text writer. Use PGP certificates saved in files. - Dosyaya kayıtlı PGP sertifikaları kullanılır. + Dosyalarda kayıtlı PGP sertifikaları kullanılır. Import friend's certificate... - Arkadaşınız sertifikasını alın... + Arkadaşınız sertifikasını içe aktarın... @@ -2815,7 +2789,7 @@ Double click on it to add his name on text writer. Export my certificate... - Sertifikanızı verin... + Sertifikamı dışa aktar... @@ -2825,12 +2799,12 @@ Double click on it to add his name on text writer. Browse - Gözatın + Gözat Friends of friends - Arkadaşlarımın arkadaşları + Arkadaşların arkadaşları @@ -2850,27 +2824,27 @@ Double click on it to add his name on text writer. RetroShare ID - RetroShare Kimliği + RetroShare Kodu Use RetroShare ID for adding a Friend which is available in your network. - İletişim ağınızdaki bir arkadaşınızı eklemek için, RetroShare Kimliğini kullanın. + İletişim ağınızdaki bir arkadaşınızı eklemek için, RetroShare Kodunu kullanın. Add Friends RetroShare ID... - Arkadaşınızın RetroShare Kimliğini Ekleyin... + Arkadaşınızın RetroShare Kodunu Ekleyin... Paste Friends RetroShare ID in the box below - Arkadaşınızın RetroShare Kimliğini alttaki kutuya yapıştırın + Arkadaşı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 Kimliğini yazın, Eş@BDE8D16A46D938CF gibi + Arkadaşınızın RetroShare Kodunu yazın, Eş@BDE8D16A46D938CF gibi @@ -3005,19 +2979,13 @@ resources. Enter RetroShare ID manually - RetroShare kimliğini el ile yazın + RetroShare kodunu el ile yazın &Send an Invitation by Web Mail Providers Web Posta Hizmeti &Sunucuları Üzerinden bir Çağrı Gönderin - - &Send an Invitation by Email - (Your friend will receive an email with instructions how to to download RetroShare) - &Eposta yoluyla Çağrı gönderin -(Arkadaşınıza RetroShare indirme bilgilerini içeren bir e-posta gönderilir) - Recommend many friends to each other @@ -3026,22 +2994,22 @@ resources. RetroShare certificate - + RetroShare sertifikası Please paste below your friend's Retroshare certificate - + Lütfen, arkadaşınızın RetroShare sertifikasını aşağıya yapıştırın Paste certificate - + Sertifikayı yapıştırın <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + <html><head/><body><p>Arkadaşınızın RetroShare sertifikasını bu kutuya yapıştırın. UYARI: bu sertifika arkadaşınızın profil anahtarından farklıdır. Arkadaşınızın profil anahtarını (bir bölümünü bile) buraya yapıştırmayın, çalışmaz.</p></body></html> @@ -3065,17 +3033,17 @@ resources. To accept the Friend Request, click the Finish button. - Arkadaşlık isteğini kabul etmek için Tamam tuşunu tıklayın. + Arkadaşlık isteğini kabul etmek için Tamam üzerine tıklayın. Sorry, some error appeared - Malesef, bir hata oluştu + Maalesef, bir sorun çıktı Here is the error message: - Oluşan hata ile ilgili ileti: + Çıkan sorun ile ilgili ileti: @@ -3100,7 +3068,7 @@ resources. <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;">Bir arkadaşınızın anahtarını imzaladığınızda, diğer arkadaşlarınıza bu arkadaşınıza güvendiğinizi gösterirsiniz. Aşağıdaki imzalar, listelenmiş anahtar sahiplerinin geçerli PGP anahtarını özgün olarak tanındığını şifreli olarak ispatlar.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Bir arkadaşınızın anahtarını imzaladığınızda, diğer arkadaşlarınıza bu arkadaşınıza güvendiğinizi gösterirsiniz. Aşağıdaki imzalar, listelenmiş anahtar sahiplerinin geçerli PGP anahtarını özgün olarak tanındığını şifreli olarak ispatlar.</span></p></body></html> @@ -3110,7 +3078,7 @@ resources. Abnormal size read is bigger than memory block. - Veri bellek bloğundan daha büyük anormal boyutta. + Veri bellek bloğundan anormal boyutta daha büyük. @@ -3135,7 +3103,7 @@ resources. Unknown section type found (Certificate might be corrupted). - Tipi bilinmeyen bir bölüm bulundu (Sertifika bozuk olabilir). + Türü bilinmeyen bir bölüm bulundu (Sertifika bozuk olabilir). @@ -3145,7 +3113,7 @@ resources. Unknown certificate error - Bilinmeyen sertifika hatası + Bilinmeyen sertifika sorunu @@ -3186,17 +3154,17 @@ resources. Peer id - Eş Kimliği + Eş Kodu Certificate appears to be valid - + Sertifika geçerli görünüyor Not a valid Retroshare certificate! - + Geçerli bir Retroshare sertifikası değil! @@ -3209,31 +3177,33 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmiş. Warning: In your File-Transfer option, you select allow direct download to No. - + +Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + Bu sizin kendi sertifikanız! Kendi kendinizle arakadaş olmak istemezsiniz. Değil mi? This key is already on your trusted list - + Bu anahtar zaten güvenilir listenizde You have already signed this key - + Bu anahtarı zaten imzaladınız @@ -3264,7 +3234,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. You have a friend request from - Şu kişiden bir arkadaşlık isteğiniz var + Şu kişi arkadaşlık isteğinde bulundu @@ -3289,7 +3259,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Remove signatures - İmzaları kaldırın + İmzaları kaldır @@ -3314,7 +3284,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Save as... - Farklı Kaydedin... + Farklı Kaydet... @@ -3333,7 +3303,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Sorry, create certificate failed - Malesef, sertifika oluşturulamadı + Maalesef, sertifika oluşturulamadı @@ -3349,7 +3319,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Sorry, certificate file creation failed - Malesef, sertifika dosyası oluşturulamadı + Maalesef, sertifika dosyası oluşturulamadı @@ -3374,27 +3344,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + Gelişmiş ayarları görüntüle <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;">Bir arkadaşınızın anahtarını imzaladığınızda, diğer arkadaşlarınıza bu arkadaşınıza güvendiğinizi gösterirsiniz. Böylece arkadaşlarınız bu anahtara güvenme durumunuza göre bağlantıları onaylamaya karar verebilir. Anahtar imzalama işlemi isteğe bağlıdır ancak geri alınamaz. Bu nedenle ne yaptığınızdan emin olun.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Bir arkadaşınızın anahtarını imzaladığınızda, diğer arkadaşlarınıza bu arkadaşınıza güvendiğinizi gösterirsiniz. Böylece arkadaşlarınız bu anahtara güvenme durumunuza göre bağlantıları onaylamaya karar verebilir. Anahtar imzalama işlemi isteğe bağlıdır ancak geri alınamaz. Bu nedenle ne yaptığınızdan emin olun.</span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - <html><head/><body><p align="justify">RetroShare , doğrudan aktarım yapabilmeniz için düzenli aralıklarla, aktarımlarınızla eşleşen görülebilir dosyalar için arkadaş listenizi kontrol eder. Bu durumda, arkadaşınız dosyayı indirdiğinizi bilebilir.</p><p align="justify">Bu işlemi yalnızca bu arkadaşınız için engellemek istiyorsanız, kutudaki işareti kaldırın. İsterseniz hala açıkca sorarak doğrudan aktarım yapabilirsiniz, Örneğin arkadaşınızın dosya listesinden indirebilirsiniz. Bu ayar aynı düğümdeki tüm konumlara uygulanır.</p></body></html> + <html><head/><body><p align="justify">RetroShare , doğrudan aktarım yapabilmeniz için düzenli aralıklarla, aktarımlarınızla eşleşen görülebilir dosyalar için arkadaş listenizi kontrol eder. Bu durumda, arkadaşınız dosyayı indirdiğinizi bilebilir.</p><p align="justify">Bu işlemi yalnızca bu arkadaşınız için engellemek istiyorsanız, kutudaki işareti kaldırın. İsterseniz hala açıkca sorarak doğrudan aktarım yapabilirsiniz, Örneğin arkadaşınızın dosya listesinden indirebilirsiniz. Bu ayar aynı düğümdeki tüm konumlara uygulanır.</p></body></html> <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. Applied to all locations of the same node.</p></body></html> - <html><head/><body><p>Bu seçenek, bu düğümden gelen bir iletide önerilen bir dosyanın otomatik olarak indirilmesini sağlar. Bu işlem örneğin kendi düğümleriniz arasında dosya göndermek gibi amaçlarla kullanılabilir. Aynı düğümdeki tüm konumlara uygulanır.</p></body></html> + <html><head/><body><p>Bu seçenek, bu düğümden gelen bir iletide önerilen bir dosyanın otomatik olarak indirilmesini sağlar. Bu işlem örneğin kendi düğümleriniz arasında dosya göndermek gibi amaçlarla kullanılabilir. Aynı düğümdeki tüm konumlara uygulanır.</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. Applies to all locations of the same node.</p></body></html> - <html><head/><body><p>Bu seçeneği kullanan eşlerin bağlantı adresleri beyaz listede değilse bağlanamazlar. Böylece trafik yönlendirme saldırılarından korunursunuz. Bu seçenek kullanıldığında, reddedilen eşler, Haber Kaynağı &quot;güvenlik akışı ögeleri&quot; bölümünde bildirilir. O bölümden IP adreslerini kara ya da beyaz listeye ekleyebilirsiniz. Aynı düğümdeki tüm konumlara uygulanır.</p></body></html> + <html><head/><body><p>Bu seçeneği kullanan eşlerin bağlantı adresleri beyaz listede değilse bağlanamazlar. Böylece trafik yönlendirme saldırılarından korunursunuz. Bu seçenek kullanıldığında, reddedilen eşler, Haber Kaynağı &quot;güvenlik akışı ögeleri&quot; bölümünde bildirilir. O bölümden IP adreslerini kara ya da beyaz listeye ekleyebilirsiniz. Aynı düğümdeki tüm konumlara uygulanır.</p></body></html> @@ -3439,7 +3409,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add key to keyring - Anahtarı, anahtarlığa ekleyin + Anahtarı, anahtarlığa ekle @@ -3453,7 +3423,7 @@ This might be useful for sending distant messages to this peer even if you don't make friends. Anahtarlığınıza ekleyeceğiniz anahtara tıklayın -Arkadaş olmasanız bile bu eşe +Bu anahtar arkadaş olmasanız bile bu eşe uzak iletiler göndermek için kullanılabilir. @@ -3465,13 +3435,13 @@ kullanılabilir. Invalid node id. - Düğüm kimliği geçersiz. + Düğüm kodu geçersiz. Auto-download recommended files - Önerilen dosyaları otomatik-indir + Önerilen dosyaları otomatik indir @@ -3482,12 +3452,12 @@ kullanılabilir. Require whitelist clearance to connect - Bağlanmak için beyaz listenin temizlenmesi zorunlu olsun + Bağlanmak için beyaz listeye eklenmek zorunlu olsun Add IP to whitelist - IP adresini beyaz listeye ekleyin + IP adresini beyaz listeye ekle @@ -3497,7 +3467,7 @@ kullanılabilir. <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>Bu sertifikada bir IP adresi yok. IP adresini bulmak için keşif ve DHT özelliğine güvenmelisiniz. Beyaz listenin temizliği zorunlu olsun seçeneğini etkinleştirdiğiniz için Haber Akışı sekmesinde eşle ilgili bir güvenlik uyarısı görüntülenecek. Oraya bakarak eşin IP adresini beyaz listeye alabilirsiniz.</p> + <p>Bu sertifikada bir IP adresi yok. IP adresini bulmak için keşif ve DHT özelliğine güvenmelisiniz. Beyaz listeye eklenme zorunlu olsun seçeneğini etkinleştirdiğiniz için Haber Akışı sekmesinde eşle ilgili bir güvenlik uyarısı görüntülenecek. Oraya bakarak eşin IP adresini beyaz listeye alabilirsiniz.</p> @@ -3507,7 +3477,7 @@ kullanılabilir. Paste Cert of your friend from Clipboard - Panodan arkadaşınızın Sertifikasını kopyalayın + Panodan arkadaşınızın Sertifikasını yapıştırın @@ -3525,7 +3495,7 @@ kullanılabilir. Connection Progress - Bağlantı İşlemi + Bağlantı İlerlemesi @@ -3576,7 +3546,7 @@ kullanılabilir. Peer Result - Eş Durumu + Eş Sonucu @@ -3587,20 +3557,28 @@ kullanılabilir. UDP Result - UDP Durumu + UDP Sonucu <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lucida Grande'; font-size:13pt;">Bu Gereç yeni eşinize bağlantınızın ilerleyişini gösterir.</span></p> +<p 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;">Sorunları çözmenize yardımcı olur.</span></p> +<p style="-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;"><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:'Lucida Grande'; font-size:13pt;">Eğer RetroShare kullanımında uzmansanız, veya RS'ın hata yapmayacağını düşünüyorsanız</span></p> +<p 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;">kapatabilirsiniz.</span></p></body></html> @@ -3610,12 +3588,12 @@ p, li { white-space: pre-wrap; } Invalid Peer ID - Eş Kimliği Geçersiz + Eş Kodu Geçersiz Unknown State - Bilinmeyen Durum + Durum Bilinmiyor @@ -3635,7 +3613,7 @@ p, li { white-space: pre-wrap; } NET Restart - AĞI Yeniden Başlat + Ağı Yeniden Başlat @@ -3737,7 +3715,7 @@ p, li { white-space: pre-wrap; } Retroshare will continue connecting in the background - RetroShare artalanda bağlanmaya devam edecek + RetroShare art alanda bağlanmaya devam edecek @@ -3759,7 +3737,7 @@ p, li { white-space: pre-wrap; } Try again shortly, Retroshare will continue connecting in the background - Kısa bir süre sonra yeniden deneyin, RetroShare artalanda bağlanmaya devam edecek + Kısa bir süre sonra yeniden deneyin, RetroShare art alanda bağlanmaya devam edecek @@ -3798,7 +3776,7 @@ p, li { white-space: pre-wrap; } We are continually working to improve connectivity. - Bağlanırlığı geliştirmek için sürekli çalışıyoruz. + Bağlanılırlığı geliştirmek için sürekli çalışıyoruz. @@ -3808,7 +3786,7 @@ p, li { white-space: pre-wrap; } Improve connectivity by opening a Port in your Firewall. - Güvelik Duvarınızda Kapı açarak bağlanırlığı arttırabilirsiniz. + Güvelik Duvarınızda Kapı açarak bağlanılırlığı arttırabilirsiniz. @@ -3843,7 +3821,7 @@ p, li { white-space: pre-wrap; } - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - - DHT önyükleyici dosyanız eksik ya da güncel değil (bdboot.txt) + - DHT ön yükleyici dosyanız eksik ya da güncel değil (bdboot.txt) @@ -3863,7 +3841,7 @@ p, li { white-space: pre-wrap; } The DHT is needed if your friends have Dynamic IP Addresses. - Arkadaşlarınızın IP adresleri devinden ise DHT gereklidir. + Arkadaşlarınızın IP adresleri devingen ise DHT gereklidir. @@ -3885,19 +3863,19 @@ p, li { white-space: pre-wrap; } but they have not added you as a Friend. - fakat onlar sizi arkadaşı olarak eklemedi. + fakat kendileri sizi arkadaşı olarak eklemedi. Please contact them to add your Certificate - Lütfen onlarla görüşerek Sertifikanızı eklemelerini sağlayın + Lütfen kendileriyle görüşerek Sertifikanızı eklemelerini sağlayın Your Retroshare Node is configured Okay - RetroShare düğümünüz doğru şekilde ayarlandı + RetroShare düğümünüz doğru şekilde yapılandırıldı @@ -3907,7 +3885,7 @@ p, li { white-space: pre-wrap; } Please contact them to add your Full Certificate - Lütfen onlarla görüşerek Tam Sertifikanızı eklemelerini sağlayın + Lütfen kendileriyle görüşerek Tam Sertifikanızı eklemelerini sağlayın @@ -3927,7 +3905,7 @@ p, li { white-space: pre-wrap; } Your Friend has configured Retroshare with DHT Disabled. - Arkadaşınız RetroShare DHT özelliğini devredışı bırakmış. + Arkadaşınız RetroShare DHT özelliğini devre dışı bırakmış. @@ -3942,12 +3920,12 @@ p, li { white-space: pre-wrap; } Without the DHT it is hard for Retroshare to locate your friend - DHT özelliği kapalıyken RetroShare arkadaşlarınızı kolay bulamaz + DHT özelliği devre dışıyken RetroShare arkadaşlarınızı kolay bulamaz Try importing a fresh Certificate to get up-to-date connection information - Güncel bağlantı bilgilerini edinmek için daha yeni bir Sertifika dosyasını alın + Güncel bağlantı bilgilerini edinmek için daha yeni bir Sertifika dosyasını içe aktarmayı deneyin @@ -3957,32 +3935,12 @@ p, li { white-space: pre-wrap; } You have imported an incomplete Certificate - Aldığınız sertifika eksik + İçe aktardığınız sertifika eksik Please retry importing the full Certificate - Lütfen tam Sertifikayı almayı yeniden deneyin - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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;">Bu Araç yeni eşinize bağlantınızın ilerlemesini görüntüler.</span></p> -<p 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;">Bu özellik hata ayıklama işlemleri için faydalıdı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-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;">Deneyimli bir RetroShare kullanıcısıysanız ya da RetroShare tarafından doğru işlemin yapılacağına güveniyorsanız</span></p> -<p 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;">kapatabilirsiniz.</span></p></body></html> + Lütfen yeniden tam Sertifikayı içe aktarmayı deneyin @@ -3990,7 +3948,7 @@ p, li { white-space: pre-wrap; } N/A - Yok + Kullanılamıyor @@ -4020,7 +3978,7 @@ p, li { white-space: pre-wrap; } Retroshare cannot connect without this information - Bu bilgi olmadan RetroShare bağlantı kuramaz + RetroShare bu bilgi olmadan bağlantı kuramaz @@ -4046,12 +4004,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>Tüm çağrılan üyeler, çevre adını, ilgili yöneticiyi ve çağrılan üye listesini görebilir. Çevre özel değil ise bu bilgiler çağrılan üyelerin düğümlerine komşu düğümler tarafından da görülebilir.</p></body></html> <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + <html><head/><body><p>Çevreyi oluşturan kişi tamamen isteğe bağlıdır. Bununla birlikte herkese açık çevreler kullanışlıdır. Böylece üyelikler hakkında görüşülecek birine ulaşılabilir.</p></body></html> @@ -4061,7 +4019,7 @@ p, li { white-space: pre-wrap; } IDs - Kimlikler + Kodlar @@ -4077,12 +4035,12 @@ p, li { white-space: pre-wrap; } Invited Members - Çağrılan Üyeler + Çağrılmış Üyeler <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - <html><head/><body><p>Bu listenin üyeleri otomatik olarak çevreye katılacak (üyeliklerini onaylayarak). Bu işlemi yapana kadar</p><p>bu çevreye özel verilere erişemeyecekler.</p></body></html> + <html><head/><body><p>Bu listenin üyeleri otomatik olarak çevreye katılır (üyeliklerini onaylayarak). Bu işlemi yapana kadar</p><p>bu çevreye özel verilere erişemezler.</p></body></html> @@ -4092,30 +4050,22 @@ p, li { white-space: pre-wrap; } ID - Kimlik + Kod Type - Tip + Tür Name: Ad: - - <html><head/><body><p>The circle name, contact author and invted member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - <html><head/><body><p>Tüm çağrılan üyeler, çevvre adını, ilgili yöneticiyi ve çağrılan üye listesini görebilir. Çevre özel değil ise bu bilgiler çağrılan üyelerin düğümlerine komşu düğümler tarafından da görülebilir.</p></body></html> - Contact author: - İlgili yönetici: - - - <html><head/><body><p>The creator of a circle ia purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - <html><head/><body><p>Çevreyi oluşturan tamamen isteğe bağlıdır. Bununla birlikte herkese açık çevreler kullanışlıdır. Böylece kişiler tartışacakları üyeleri görebilir.</p></body></html> + Yönetici ile görüşün: @@ -4157,7 +4107,7 @@ p, li { white-space: pre-wrap; } RetroShare - RetroShare + RetroShare @@ -4167,28 +4117,28 @@ p, li { white-space: pre-wrap; } No Restriction Circle Selected - Hiçbir Sınırlama Çevresi Seçilmemiş + Herhangi Bir Sınırlama Çevresi Seçilmemiş No Circle Limitations Selected - Hiçbir Çevre Sınırlaması Seçilmemiş + Herhangi Bir Çevre Sınırlaması Seçilmemiş Add - Ekleyin + Ekle Remove - Silin + Sil Search - Ara + Arama @@ -4208,19 +4158,19 @@ p, li { white-space: pre-wrap; } Edit Circle - Çevreyi Düzenleyin + Çevreyi Düzenle PGP Identity - PGP Kimliği + PGP Kodu Anon Id - İsimsiz Kimlik + İsimsiz Kod @@ -4251,7 +4201,7 @@ p, li { white-space: pre-wrap; } PGP Linked Id - PGP Bağlantılı Kimlik + PGP Bağlantılı Kod @@ -4270,7 +4220,7 @@ p, li { white-space: pre-wrap; } Create a Group - Grup Olusturun + Grup Ekle @@ -4301,7 +4251,7 @@ p, li { white-space: pre-wrap; } Edit Group - Grubu Düzenleyin + Grubu Düzenle @@ -4327,27 +4277,27 @@ 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:'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"> <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;">Ekler:</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;"> Yeni dosyaları karmak için, Sürükle ve Bırak ya da Dosya Ekleme düğmelerini kullanın.</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;"> Yeni dosyaları karmak için, Sürükle Bırak ya da Dosya Ekleme düğmelerini kullanın.</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;"> Paylaştığınız bölümlerden RetroShare bağlantılarını Kopyalayıp Yapıştırın</span></p></body></html> Add File to Attach - Dosya Ekleyin + Dosya Ekle Add Channel Thumbnail - Kanal Küçük Görseli Ekleyin + Kanal Küçük Görseli Ekle @@ -4363,12 +4313,12 @@ p, li { white-space: pre-wrap; } Attachments - Ekler + Ek dosyalar Allow channels to get frame for message thumbnail from movie media attachments or not - Kanalların ileti küçük görseli için film ortamı eklerinden kare almasını ister misiniz? + Bu seçenek etkinleştirildiğinde, kanallar ileti küçük görseli için film ortamı eklerinden kare alır @@ -4383,12 +4333,12 @@ p, li { white-space: pre-wrap; } Paste RetroShare Links - RetroShare Bağlantıları Yapıştırın + RetroShare Bağlantılarını Yapıştır Paste RetroShare Link - RetroShare Bağlantısı Yapıştırın + RetroShare Bağlantısını Yapıştır @@ -4404,12 +4354,12 @@ p, li { white-space: pre-wrap; } File not found or file name not accepted. - Dosya bulunamadı ya da adı kabul edilmedi . + Dosya bulunamadı ya da adı kabul edilmedi. Add Extra File - Ek Dosya Ekleyin + Ek Dosya Ekle @@ -4430,13 +4380,13 @@ p, li { white-space: pre-wrap; } Load thumbnail picture - Küçük Görsel Yükleyin + Küçük Görsel Yükle Generate mass data - Toplu veri üretin + Toplu veri üret @@ -4451,7 +4401,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + Kanal İletisini Düzenle @@ -4465,7 +4415,7 @@ p, li { white-space: pre-wrap; } Post Forum Message - Forum İletisi Gönderin + Forum İletisi Gönder @@ -4480,12 +4430,12 @@ p, li { white-space: pre-wrap; } Attach File - Dosya Ekleyin + Dosya Ekle Sign Message - İletiyi İmzalayın + İletiyi İmzala @@ -4505,12 +4455,12 @@ p, li { white-space: pre-wrap; } Start New Thread - Yeni Konu Başlatın + Yeni Konu Başlat Edit Message - + İletiyi Düzenle @@ -4527,7 +4477,7 @@ p, li { white-space: pre-wrap; } RetroShare - Retroshare + RetroShare @@ -4537,64 +4487,55 @@ p, li { white-space: pre-wrap; } Please choose Signing Id, it is required - Lütfen gerekiyorsa İmzalayan Kimliğini seçin + Lütfen gerekiyorsa İmzalayan Kodunu seçin Cancel Forum Message - + Forum İletisini İptal Edin Forum Message has not been sent yet! Do you want to discard this message? - + Forum iletisi henüz gönderilmedi! +Bu iletiyi silmek istiyor musunuz? Add Extra File - Ek Dosya Ekleyin + Ek Dosya Ekle No compatible ID for this forum - Bu forum için uyumlu bir kimlik bulunamadı + Bu forum için uyumlu bir kod bulunamadı None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - Kimliklerinizin hiç biri bu foruma ileti göndermenize izin vermiyor. Bu durum forum kimliklerinizin hiç birini içermeyen bir çevre ile kısıtlandığından ya da forum özellikleri PGP imzalı bir kimlik istediğinden olabilir. + Kimliklerinizin hiç biri bu foruma ileti göndermenize izin vermiyor. Bu durum forum kimliklerinizin hiç birini içermeyen bir çevre ile kısıtlanmış olduğundan ya da forum özellikleri PGP imzalı bir kimlik zorunlu olacak şekilde ayarlanmış olduğundan olabilir. Generate mass data - Toplu veri üretin + Toplu veri üret Do you really want to generate %1 messages ? - Gerçekten %1 ileti oluşturmak istiyor musunuz? + Gerçekten %1 ileti üretmek istiyor musunuz? Send - Gönderin - - - Forum Message - Forum İletisi - - - Forum Message has not been Sent. -Do you want to reject this message? - Forum İletisi Gönderilemedi. -Bu iletiyi reddetmek ister misiniz? + Gönder Post as - Şu olarak gönderin + Şu olarak gönder @@ -4607,7 +4548,7 @@ Bu iletiyi reddetmek ister misiniz? Create Chat Lobby - Sohbet Odası Oluşturun + Sohbet Odası Oluştur @@ -4617,7 +4558,7 @@ Bu iletiyi reddetmek ister misiniz? Lobby name: - Lobby Adı: + Oda Adı: @@ -4642,7 +4583,7 @@ Bu iletiyi reddetmek ister misiniz? <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>Bu seçenek işaretlendiğinde bu odaya yalnız PGP imzalı kimlikler katılıp konuşabilir. Bu sınırlama sonucunda en azından odadaki bazı kişiler spam gönderenin düğümünü tespit edebileceğinden isimsiz spam engellenir.</p></body></html> + <html><head/><body><p>Bu seçenek işaretlendiğinde bu odaya yalnız PGP imzalı kodlar katılıp konuşabilir. Bu sınırlama sonucunda en azından odadaki bazı kişiler spam gönderenin düğümünü tespit edebileceğinden isimsiz spam gönderenler engellenir.</p></body></html> @@ -4657,7 +4598,7 @@ Bu iletiyi reddetmek ister misiniz? Select the Friends with which you want to group chat. - Grup sohbeti yapmak istediginiz Arkadaşları seçin. + Grup sohbeti yapmak istediğiniz Arkadaşlarınızı seçin. @@ -4667,12 +4608,12 @@ Bu iletiyi reddetmek ister misiniz? Create Chat Room - + Sohbet Odası Ekle Put a sensible chat room name here - + Buraya anlamlı bir oda adı yazın @@ -4682,7 +4623,7 @@ Bu iletiyi reddetmek ister misiniz? Contacts: - Kişiler: + İlgililer: @@ -4710,7 +4651,7 @@ Bu iletiyi reddetmek ister misiniz? Location ID: - Konum Kimliği: + Konum Kodu: @@ -4740,7 +4681,7 @@ Bu iletiyi reddetmek ister misiniz? Save Key into a file - Anahtarı dosyaya kaydedin + Anahtarı dosyaya kaydet @@ -4755,7 +4696,7 @@ Bu iletiyi reddetmek ister misiniz? Your certificate could not be parsed correctly. Please contact the developers. - Sertifikanız doğru şekilde işlenemedi. Lütfen geliştiricilerle görüşün. + Sertifikanız doğru şekilde işlenemedi. Lütfen yazılımı geliştirenlerle görüşün. @@ -4770,7 +4711,7 @@ Bu iletiyi reddetmek ister misiniz? Save as... - Farklı Kaydedin... + Farklı Kaydet... @@ -4795,7 +4736,7 @@ Bu iletiyi reddetmek ister misiniz? PGP Id : - PGP Kimliği : + PGP Kodu : @@ -4805,12 +4746,12 @@ Bu iletiyi reddetmek ister misiniz? Copy certificate to clipboard - Sertifikayı panoya kopyalayın + Sertifikayı panoya kopyala Save certificate to file - Sertifikayı dosyaya kaydedin + Sertifikayı dosyaya kaydet @@ -4820,12 +4761,12 @@ Bu iletiyi reddetmek ister misiniz? Create new node... - Yeni düğüm oluşturun... + Yeni düğüm ekle... show statistics window - istatistik penceresini görüntüleyin + istatistik penceresini görüntüle @@ -4846,7 +4787,7 @@ Bu iletiyi reddetmek ister misiniz? <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 bağlantılarda vekil sunucu olarak Bittorrent DHT özelliğini kullanır. IP adresiniz DHT üzerinde "kaydedilmez". Bunun yerine standart DHT istekleri işlenirken DHT arkadaşlarınız tarafından size ulaşılması için kullanılır. RetroShare arkadaşlarınızın birinden bir DHT yanıtı aldığında durum simgesi yeşile döner.</p> + <p>RetroShare bağlantılarda vekil sunucu olarak Bittorrent DHT özelliğini kullanır. IP adresiniz DHT üzerinde "kaydedilmez". Bunun yerine DHT, standart DHT istekleri işlenirken arkadaşlarınızın size ulaşması için kullanılır. RetroShare arkadaşlarınızın birinden bir DHT yanıtı aldığında durum simgesi yeşile döner.</p> @@ -4900,17 +4841,17 @@ Bu iletiyi reddetmek ister misiniz? Faster - Daha Hızlı + Daha hızlı Average - Ortalama + Ortalama Slower - Daha Yavaş + Daha yavaş @@ -4948,7 +4889,7 @@ Bu iletiyi reddetmek ister misiniz? Needs checking - Denetime gerek duyuyor + Denetlenmesi gerekli @@ -4963,7 +4904,7 @@ Bu iletiyi reddetmek ister misiniz? Copy link to clipboard - Bağlantıyı panoya kopyalayın + Bağlantıyı panoya kopyala @@ -5001,7 +4942,7 @@ Bu iletiyi reddetmek ister misiniz? Nat Type - Nat Tipi + Nat Türü @@ -5021,7 +4962,7 @@ Bu iletiyi reddetmek ister misiniz? PeerId - Eş Kimliği + Eş Kodu @@ -5056,7 +4997,7 @@ Bu iletiyi reddetmek ister misiniz? RsId - RSKimliği + RSKodu @@ -5092,7 +5033,7 @@ Bu iletiyi reddetmek ister misiniz? Last Recv - Son Alinan + Son Alınan @@ -5142,12 +5083,12 @@ Bu iletiyi reddetmek ister misiniz? Copy %1 to clipboard - %1 ögesini panoya kopyalayın + %1 ögesini panoya kopyala Unknown NetState - Bilinmeyen Ağ Durumu + Ağ Durumu Bilinmiyor @@ -5207,12 +5148,12 @@ Bu iletiyi reddetmek ister misiniz? UNKNOWN NAT HOLE STATUS - BİLİNMEYEN NAT HOLE DURUMU + NAT DELİĞİ DURUMU BİLİNMİYOR NO NAT HOLE - NAT HOLÜ YOK + NAT DELİĞİ YOK @@ -5232,7 +5173,7 @@ Bu iletiyi reddetmek ister misiniz? NET BAD: Unknown State - AĞ SORUNU: Bilinmeyen Durum + AĞ SORUNU: Durum Bilinmiyor @@ -5322,7 +5263,7 @@ Bu iletiyi reddetmek ister misiniz? Disconnected - Bağlantı kesildi + Bağlı değil @@ -5347,7 +5288,7 @@ Bu iletiyi reddetmek ister misiniz? Unknown - Bilinmeyen + Bilinmiyor @@ -5431,12 +5372,12 @@ Bu iletiyi reddetmek ister misiniz? Nat Type: - NAT Tipi: + NAT Türü: Nat Hole: - NAT Holü: + NAT Deliği: @@ -5471,7 +5412,7 @@ Bu iletiyi reddetmek ister misiniz? Disconnected: - Bağlantı Kesildi: + Bağlı değil: @@ -5543,7 +5484,7 @@ Bu iletiyi reddetmek ister misiniz? Start file - Dosyayı başlatın + Dosyayı başlat @@ -5590,12 +5531,12 @@ Bu iletiyi reddetmek ister misiniz? Expression Widget - İfade Aracı + İfade Gereci Delete this expression - Bu ifadeyi silin + Bu ifadeyi sil @@ -5608,32 +5549,32 @@ Bu iletiyi reddetmek ister misiniz? Add new Association - Yeni İş Birliği Ekleyin + Yeni İş Birliği Ekle &Edit - &Düzenleyin + &Düzenle Edit this Association - Bu İş Birliğini Düzenleyin + Bu İş Birliğini Düzenle &Remove - Silin + &Sil Remove this Association - Bu İş Birliğini Silin + Bu İş Birliğini Sil File type - Dosya Tipi + Dosya Türü @@ -5739,7 +5680,7 @@ Bu iletiyi reddetmek ister misiniz? Transfer type - Aktarım tipi + Aktarım türü @@ -5831,7 +5772,7 @@ Bu iletiyi reddetmek ister misiniz? Friends Directories - Arkadaşın Klasörleri + Arkadaş Klasörleri @@ -5841,7 +5782,7 @@ Bu iletiyi reddetmek ister misiniz? # Files - + Dosya Sayısı @@ -5871,12 +5812,12 @@ Bu iletiyi reddetmek ister misiniz? Column %1 - + Sütun %1 Row %1 - + Satır %1 @@ -5896,10 +5837,6 @@ Bu iletiyi reddetmek ister misiniz? Expand new messages Yeni iletileri genişlet - - Forum - Forum - Load embedded images @@ -5908,12 +5845,12 @@ Bu iletiyi reddetmek ister misiniz? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + <html><head/><body><p>Bu özelliğin bir maliyeti var ve geliştirmek yazılım geliştiricilerin planlarında yer alıyor. Ancak bu arada varsayılan olarak devre dışı. Etkinleştirildiğinde uzun forum iletilerinin görüntülenmesi zaman alıyorsa yeniden devre dışı bırakın. </p></body></html> Load emoticons (costly) - + İfadeler yüklensin (maliyetli) @@ -5928,7 +5865,7 @@ Bu iletiyi reddetmek ister misiniz? Forums - Forumlar + Forumlar @@ -5942,32 +5879,32 @@ Bu iletiyi reddetmek ister misiniz? ID - + Kod Hide Offline Friends - Çevrimdışı Arkadaşları Gizle + Çevrimdışı Arkadaşlar Gizlensin export friendlist - arkadaş listesini verin + arkadaş listesini dışa aktar export your friendlist including groups - gruplarla birlikte arkadaş listenizi verin + arkadaş listenizi gruplarla birlikte dışa aktarın import friendlist - arkadaş listesini alın + arkadaş listesini içe aktar import your friendlist including groups - gruplarla birlikte arkadaş listenizi alın + arkadaş listenizi gruplarla birlikte içe aktarın @@ -5978,7 +5915,7 @@ Bu iletiyi reddetmek ister misiniz? Trusted nodes - + Güvenilen düğümler @@ -5999,12 +5936,12 @@ Bu iletiyi reddetmek ister misiniz? Edit Group - Grubu Düzenleyin + Grubu Düzenle Remove Group - Grubu Silin + Grubu Sil @@ -6015,43 +5952,43 @@ Bu iletiyi reddetmek ister misiniz? Copy certificate link - Sertifika bağlantısını kopyalayın + Sertifika bağlantısını kopyala Add to group - Gruba ekleyin + Gruba ekle Search - Arayın + Arama Search ID - Kod Arama + Kod arama Sort by state - Duruma göre sıralayın + Duruma göre sırala Profile details - + Profil bilgileri Deny connections - Bağlantıları reddedin + Bağlantıları reddet Move to group - Gruba taşıyın + Gruba taşı @@ -6061,37 +5998,37 @@ Bu iletiyi reddetmek ister misiniz? Remove from group - Gruptan çıkartın + Gruptan çıkart Remove from all groups - Tüm gruplardan çıkartın + Tüm gruplardan çıkart Send message to this node - + Bu düğüme ileti gönder Node details - + Düğüm bilgileri Recommend this node to... - + Bu düğümü şu kişiye önerin... Expand all - Tümünü genişletin + Tümünü genişlet Collapse all - Tümünü daraltın + Tümünü daralt @@ -6113,7 +6050,7 @@ Bu iletiyi reddetmek ister misiniz? Your friendlist is stored at: - Arkadaş listenizin depolandığı yer: + Arkadaş listenizin kaydedildiği yer: @@ -6128,7 +6065,7 @@ Bu iletiyi reddetmek ister misiniz? Your friendlist was imported from: - Arkadaş listeniz şuradan alındı: + Arkadaş listeniz şuradan içe aktarıldı: @@ -6148,17 +6085,17 @@ en az bir eş eklenemedi at least one peer was not added to a group -en az bir eş gruba eklenemedi +en az bir eş bir gruba eklenemedi Select file for importing your friendlist from - Arkadaş listenizin alınacağı dosyayı seçin + Arkadaş listenizin içe aktarılacağı dosyayı seçin Select a file for exporting your friendlist to - Arkadaş listenizin verileceği bir dosya seçin + Arkadaş listenizin dışa aktarılacağı bir dosya seçin @@ -6172,10 +6109,6 @@ en az bir eş gruba eklenemedi Error Hata - - Failed to get a file! - Dosya alınamadı! - File is not writeable! @@ -6193,7 +6126,7 @@ en az bir eş gruba eklenemedi Show Items - + Ögeleri Görüntüle @@ -6203,17 +6136,17 @@ en az bir eş gruba eklenemedi Attempt to connect - Bağlanmayı deneyin + Bağlanmayı dene Create new group - Yeni grup oluşturun + Yeni grup ekle Paste certificate link - Sertifika bağlantısını yapıştırın + Sertifika bağlantısını yapıştır @@ -6223,7 +6156,7 @@ en az bir eş gruba eklenemedi Remove Friend Node - Arkadaş Düğümünü Silin + Arkadaş Düğümünü Sil @@ -6233,12 +6166,12 @@ en az bir eş gruba eklenemedi Send message to whole group - Tüm gruba ileti gönderin + Tüm gruba ileti gönder Send message - İleti gönderin + İleti gönder @@ -6246,42 +6179,42 @@ en az bir eş gruba eklenemedi Dialog - Pencere + Pencere Message: - İleti: + İleti: Recommend friends - Arkadaş önerin + Arkadaş öner To - Kime + Şu Kişiye Please select at least one friend for recommendation. - Önerilecek en az bir arkadaşınızı seçin. + Lütfen önermek istediğiniz en az bir arkadaşınızı seçin. Please select at least one friend as recipient. - Lütfen arkadaşlarınızdan en az birini alıcı olarak seçin. + Lütfen arkadaşınızı önermek istediğiniz en az bir arkadaşınızı seçin. Recommendation messages sent! - + Öneri iletileri gönderildi! A recommendation message was sent to each of the chosen friends! - + Seçtiğiniz arkadaşlarınıza birer öneri iletisi gönderildi! @@ -6289,7 +6222,7 @@ en az bir eş gruba eklenemedi Confirm Friend Request - Arkadaşlık İsteğini Onaylayın + Arkadaşlık İsteğini Onayla @@ -6307,17 +6240,17 @@ en az bir eş gruba eklenemedi Search : - Ara: + Arama : Sort by state - Duruma göre sıralayın + Duruma göre sırala Filter only connected - + Sadece bağlı olanları göster @@ -6332,12 +6265,12 @@ en az bir eş gruba eklenemedi Mark all - Tümünü işaretleyin + Tümünü işaretle Mark none - Tümünün işaretini kaldırın + Tümünün işaretini kaldır @@ -6345,28 +6278,28 @@ en az bir eş gruba eklenemedi Edit status message - Durum iletisini düzenleyin + Durum iletisini düzenle Broadcast - Yayınlayın + Yayınla Clear Chat History - Sohbet Geçmişini Temizleyin + Sohbet Geçmişini Temizle Add Friend - Arkadaş Ekleyin + Arkadaş Ekle Add your Avatar Picture - Avatar Görselinizi Ekleyin + Avatar Görselini Ekle @@ -6386,50 +6319,50 @@ en az bir eş gruba eklenemedi Browse Message History - İleti Geçmişine Gözatın + İleti Geçmişine Gözat Browse History - Geçmişe Gözatın + Geçmişe Gözat Save Chat History - Sohbet Geçmişini Kaydedin + Sohbet Geçmişi Kaydedilsin Add a new Group - Yeni Grup Ekleyin + Yeni Grup Ekle Delete Chat History - Sohbet Geçmişini Silin + Sohbet Geçmişini Sil Deletes all stored and displayed chat history - Depolanan ve görüntülenen tüm sohbet geçmişlerini siler + Kaydedilen ve görüntülenen tüm sohbet geçmişlerini siler Create new Chat lobby - Yeni Sohbet Odası Oluşturun + Yeni Sohbet Odası Ekle Choose Font - Yazi Tipi Seçin + Yazi Türünü Seçin Reset font to default - Yazı tipini varsayılana çevir + Yazı türünü varsayılana çevir @@ -6439,7 +6372,7 @@ en az bir eş gruba eklenemedi <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ı olan komşu Retroshare düğümlerini gösterir.</p> <p>Bilgiye daha iyi erişim sağlamak için düğümleri gruplandırabilirsiniz. Örneğin yalnızca bazı düğümlerin belirli dosyalarınıza erişmesine izin verebilirsiniz.</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ğ çizelgesi; keşif bilgilerine 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> + <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ı olan komşu RetroShare düğümlerini görüntüler.</p> <p>Bilgiye daha iyi erişim sağlamak için düğümleri gruplandırabilirsiniz. Örneğin yalnızca bazı düğümlerin belirli dosyalarınıza erişmesine izin verebilirsiniz.</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ğ çizelgesi; keşif bilgilerine bağlı olarak, etrafınızdaki ağı görüntüler</li> <li>Anahtarlık; genellikle arkadaşlarınız tarafından size yönlendirilmiş, biriktirdiğiniz düğüm anahtarlarını bulundurur.</li> </ul> </p> @@ -6468,7 +6401,7 @@ en az bir eş gruba eklenemedi Create new Profile - Yeni profil oluşturun + Yeni Profil Ekle @@ -6480,14 +6413,6 @@ en az bir eş gruba eklenemedi All fields are required with a minimum of 3 characters Tüm alanlara en az 3 karakter yazılmalıdır - - Password (check) - Parola (onay) - - - [Required] Type the same password again here. - [Required] Parolanızı yeniden yazın. - Passwords do not match @@ -6501,7 +6426,7 @@ en az bir eş gruba eklenemedi Use BOB - + BOB kullan @@ -6509,18 +6434,10 @@ en az bir eş gruba eklenemedi This password is for PGP Bu parola PGP için - - Generate new node - Yeni düğüm üretin - You can use it now to create a new node. - Bunu yeni düğüm oluşturmak için kullanabilirsiniz. - - - Invalid hidden node - Gizli düğüm geçersiz + Şimdi yeni bir düğüm oluşturmak için bunu kullanabilirsiniz. @@ -6532,99 +6449,81 @@ en az bir eş gruba eklenemedi Failed to generate your new certificate, maybe PGP password is wrong! Yeni sertifikanız üretilemedi. 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 formu kullanarak yeni bir profil oluşturabilirsiniz. -Ayrıca varolan bir profili de kullanabilirsiniz: Bunun için "Yeni profil oluşturun" işaretini kaldırmalısınız. - - - 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 verip, diğer bilgisayarda almalı ve aldığınız bilgilerle 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 henüz bir profil (PGP anahtarları) yok. Oluşturmak için lütfen aşağıdaki formu doldurun ya da varolan profil bilgilerini alın. - - - No node exists for this profile. - Bu profil için bir düğüm yok. - Options - + Ayarlar PGP Key Length - + PGP Anahtar Uzunluğu <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Buraya güçlü bir parola yazın. Bu parola kişisel düğüm anahtarınızı korumak için kullanılacak!</p></body></html> <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + <html><head/><body><p>Lütfen olabildiğince fazla rastlantısallık oluşturmak için, farenizi ekranda gezdirin. Düğüm anahtarlarını oluşturmak için yüzde değeri en az %20 olmalıdır.</p></body></html> Standard node - + Standart düğüm TOR/I2P Hidden node - + TOR/I2P Gizli Düğüm <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + <html><head/><body><p>Düğüm adınız bu bilgisayarda çalışacak olan RetroShare kopyasını</p><p>belirlemek için kullanılır.</p></body></html> Use existing profile - + Varolan profili kullan Node name - + Düğüm adı <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + <html><head/><body><p>Profil adı sizi ağda tanımlamak için kullanılır.</p><p>Arkadaşlarınızın sizden gelen bağlantıları onaylamasını sağlar.</p><p>Aynı profili kullanarak farklı bilgisayarlar üzerinde </p><p>birden çok RetroShare düğümü oluşturabilirsiniz.</p><p><br/></p></body></html> Export this profle - + Bu profili dışa aktar <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Bu değer şu formda bir Tor Onion adresi olmalıdır: xa76giaf6ifda7ri63i263.onion <br/>ya da şu formda bir I2P adresi olmalıdır: [52 karakter].b32.i2p </p><p>Bir adres edinmek için Tor ya da I2P uygulamasını yeni bir gizli hizmet / sunucu tüneli oluşturacak şekilde yapılandırmalısınız. </p><p>Bu değeri şu anda boş bırakabilirsiniz ancak düğümünüz yalnız Ayarlar-&gt;Ağ-&gt;Gizli Hizmet yapılandırma bölümünden Tor/I2P hizmet adresini doğru olarak ayarlamışsanız çalışır.</p></body></html> <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + <html><head/><body><p>Kimlikler, sohbet odalarında, forumlarda ve kanal yorumlarında yazışırken kullanılır. </p><p>Kimlikler ayrıca RetroShare ağı üzerinden e-posta alıp gönderebilir. İmzalanmış bir kimliği</p><p>şimdi oluşturabileceğiniz gibi daha sonra gerek duyduğunuz zaman da oluşturabilirsiniz.</p></body></html> Go! - + Git! TextLabel - Metin Etiketi + Metin Etiketi @@ -6640,36 +6539,22 @@ Ayrıca varolan bir profili de kullanabilirsiniz: Bunun için "Yeni profil Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - Profiliniz bir PGP anahtar çiftiyle ilişkilendirildi. RetroShare şu anda DSA anahtarlarını yoksayıyor. + Profiliniz bir PGP anahtar çiftiyle ilişkilendirildi. RetroShare şu anda DSA anahtarlarını yok sayıyor. <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>Bağlantı kapınız.</p><p>1024 ve 65535 arasındaki herhangi bir değer</p><p>kullanılabilir. Bu değer daha sonra değiştirilebilir.</p></body></html> - - - PGP key length - PGP anahtar uzunluğu + <html><head/><body><p>Bağlantı kapınız.</p><p>1024 ile 65535 arasındaki herhangi bir değer</p><p>kullanılabilir. Bu değer daha sonra değiştirilebilir.</p></body></html> Click to create your node and/or profile Profilinizi ve/veya düğümünüzü oluşturmak için tıklayın - - Generate new profile and node - Yeni profil ve düğüm üretin - - - 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 yazılımına hoşgeldiniz. Devam etmeden önce bir profil oluşturup bir düğümle ilişkilendirmelisiniz. Bunun için lütfen bu formu doldurun. -İsterseniz (önceden verilmiş) bir profili alabilirsiniz. Bunun için "Yeni profil oluşturun" işaretini kaldırın - Export profile - Profili verin + Profili dışa aktar @@ -6689,10 +6574,10 @@ It is encrypted You can now copy it to another computer and use the import button to load it Profiliniz kaydedildi -Ayrıca şifrelendi +ve şifrelendi -Artık başka bilgisayara kopyalayabilir -ve Al düğmesini kullanarak yükleyebilirsiniz +Artık başka bir bilgisayara kopyalayabilir +ve İçe Aktar düğmesini kullanarak yükleyebilirsiniz @@ -6708,67 +6593,67 @@ ve Al düğmesini kullanarak yükleyebilirsiniz Import profile - Profili al + Profili içe aktar Create new profile and new Retroshare node - + Yeni profil ve yeni bir RetroShare düğümü oluştur Create new Retroshare node - + Yeni bir RetroShare düğümü oluştur Tor/I2P address - + Tor/I2P adresi Username - + Kullanıcı Adı Chat name - + Sohbet adı Password again - + Parola (tekrar) <p>Node creation is disabled until all fields correctly set.</p> - + <p>Tüm alanlar geçerli olana kadar düğüm oluşturamazsınız.</p> <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + <p>Yeteri kadar rasgelelik elde edilene kadar düğüm oluşturamazsınız. En az %20'ye ulaşana kadar, lütfen farenizi oynatmaya devam edin.</p> I2P instance address with BOB enabled - + BOB özelliği aktif I2P adres örneği I2P instance address - + I2P adres örneği hidden service address - + gizli hizmet adresi RetroShare profile files (*.asc);;All files (*) - + RetroShare profil dosyaları (*.asc);;Tüm dosyalar (*) @@ -6783,26 +6668,22 @@ ve Al düğmesini kullanarak yükleyebilirsiniz New profile imported - Yeni profil alındı + Yeni profil içe aktarıldı Your profile was imported successfully: - Profiliniz alındı: + Profiliniz içe aktarıldı: The GXS nickname is too short. Please input at least %1 characters. - + GXS takma adı çok kısa. Lütfen en az %1 karakter yazın. The GXS nickname is too long. Please reduce the length to %1 characters. - - - - Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p - Lütfen formun adresini yazın: 31769173498.onion:7800 ya da [52 karakter].b32.i2p + GXS takma adı çok uzun. Lütfen en fazla %1 karakter yazın. @@ -6843,7 +6724,7 @@ ve Al düğmesini kullanarak yükleyebilirsiniz Start minimized on system start - Windows başlatıldığında küçültülmüş olarak başlat + Windows ile küçültülmüş olarak başlatılsın @@ -6853,7 +6734,7 @@ ve Al düğmesini kullanarak yükleyebilirsiniz Enable Advanced Mode (Restart Required) - Gelişmiş Kipi Etkinleştir (Yeniden başlatma gerekir) + Gelişmiş Kipi Etkinleştir (Yeniden Başlatma Gerekir) @@ -6863,7 +6744,7 @@ ve Al düğmesini kullanarak yükleyebilirsiniz Do not show the Quit RetroShare MessageBox - RetroShare çıkış onayı iletisi görüntülenmesin + RetroShare Çıkış onayı iletisi görüntülenmesin @@ -6873,7 +6754,7 @@ ve Al düğmesini kullanarak yükleyebilirsiniz Register retroshare:// as URL protocol - retroshare:// iletişim kuralı olarak kaydedilsin + retroshare:// adres iletişim kuralı olarak kaydedilsin @@ -6893,7 +6774,7 @@ ve Al düğmesini kullanarak yükleyebilirsiniz <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - <html><head/><body><p>Bir paket yükleyici ile RetroShare yüklemek için</p><p>/usr/share/applications/retroshare.desktop</p></body></html> + <html><head/><body><p>/usr/share/applications/retroshare.desktop dosyasını edinmek için </p><p>RetroShare uygulamasını paket kurucu ile kurun</p></body></html> @@ -6903,45 +6784,37 @@ ve Al düğmesini kullanarak yükleyebilirsiniz Idle - Boş + Boşta Idle Time - Boş Zaman + Boşta Zaman seconds saniye - - You have enough right. - Yeterli izinleriniz yok. - - - You don't have enough right. Run RetroShare as Admin to change this setting. - Yeterli izinleriniz yok. Bu ayarı değiştirebilmek için RetroShare uygulamasını Yönetici olarak çalıştırın. - You have sufficient rights. - + Yeterli izinlere sahipsiniz. You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + Yeterli izinleriniz yok. Bu ayarı değiştirebilmek için RetroShare uygulamasını Yönetici olarak çalıştırın. For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Güvenlik nedenleriyle otomatik oturum açma özelliği devre dışı bırakıldı. Etkinleştirebilirsiniz ancak sorumluluk size ait olur! Your RetroShare build has auto-login disabled. - + RetroShare kopyanızda otomatik oturum açma devre dışı bırakıldı. @@ -6989,7 +6862,7 @@ ve Al düğmesini kullanarak yükleyebilirsiniz <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -7000,7 +6873,7 @@ 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;">Arkadaşlarınız olmadan RetroShare bir hiçtir. İşlemi başlatmak için düğmeye tıklayı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;">Arkadaşlarınız olmadan RetroShare bir hiçtir. Çağırma işlemini başlatmak için düğmeye 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şlarınızı &quot;Kimlik sertifikanız&quot; ile çağırı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> @@ -7017,28 +6890,12 @@ p, li { white-space: pre-wrap; } Add Friends Arkadaşlarınızı Ekleyin - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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;">Arkadaşlarınız size çağrı gönderdiğinde, Arkadaş Ekleyin 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;">Pencereye Kimlik Sertifikasını yapıştırarak arkadaşınızı ekleyin.</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> @@ -7071,24 +6928,24 @@ 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: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;"> <p style=" 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 başarımını arttırmak için bir Dış Kapı açabilirsiniz. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Böylece bağlantı kurmayı hızlandırarak daha çok kişinin sizinle bağlantı kurmasını sağlayabilirsiniz. </span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bunu yapmanın en kolay yolu İnternet bağlantısı için kullandığınız modem üzerinde UPnP özelliğini etkinleştirmektir.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Ayarlar her modem için farklı olduğundan, İnternet üzerinde modem modelinize göre arama yaparak ayarları nasıl yapacağınızı öğrenebilirsiniz.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bu bilgiler sizin için anlamsızsa dert etmeyin. RetroShare gene de çalışacaktı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="-qt-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 başarımını arttırmak için bir Dış Kapı açabilirsiniz. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Böylece bağlantı kurmayı hızlandırarak daha çok kişinin sizinle bağlantı kurmasını sağlayabilirsiniz. </span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bunu yapmanın en kolay yolu İnternet bağlantısı için kullandığınız modem üzerinde UPnP özelliğini etkinleştirmektir.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Ayarlar her modem için farklı olduğundan, İnternet üzerinde modem modelinize göre arama yaparak ayarları nasıl yapacağınızı öğrenebilirsiniz.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bu bilgilerin sizin için bir anlamı yoksa dert etmeyin. RetroShare gene de çalışacaktı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="-qt-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> @@ -7105,7 +6962,7 @@ 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;">Having trouble getting started with RetroShare?</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare uygulamasını başlatmakta sorun mu yaşıyorsunuz?</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> <p style=" 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) SSS Wiki sayfasına bakın. Buradaki bilgiler biraz eskidi, ancak güncel tutmaya çalışıyoruz..</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> @@ -7128,16 +6985,22 @@ 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: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 Friends' &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;">Arkadaşlarınız size çağrı gönderdiğinde, Arkadaş Ekleme 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;">Eklemek istediğiniz arkadaşınızın Kod Sertifikasını pencereye yapıştırın.</span></p></body></html> Advanced: Open Firewall Port - Gelişmiş: Güvenlik Duvarı Kapısı Açın + Gelişmiş: Güvenlik Duvarında Kapı Açın @@ -7147,7 +7010,7 @@ p, li { white-space: pre-wrap; } Open RS Website - RS Web Sitesini Açın + RetroShare Web Sitesini Açın @@ -7177,12 +7040,12 @@ p, li { white-space: pre-wrap; } Your friend has installed RetroShare, and would like you to try it out. - Arkadaşınız RetroShare yükledi ve sizin de denemenizi istiyor. + Arkadaşınız RetroShare uygulamasını kurdu ve sizin de denemenizi istiyor. You can get RetroShare here: %1 - RestoShare yazılımını buradan indirebilirsiniz: %1 + RestoShare uygulamasını buradan indirebilirsiniz: %1 @@ -7197,7 +7060,7 @@ p, li { white-space: pre-wrap; } Here is your friends ID Certificate. - Arkadaşlarınızın Kimlik Sertifikaları. + Arkadaşlarınızın Kod Sertifikası. @@ -7207,7 +7070,7 @@ p, li { white-space: pre-wrap; } and send them your ID Certificate to get securely connected. - ve güvenli bağlantı kurmak için Kimlik Sertifikanızı arkadaşlarınıza gönderin. + ve güvenli bağlantı kurmak için Kod Sertifikanızı arkadaşlarınıza gönderin. @@ -7245,7 +7108,7 @@ p, li { white-space: pre-wrap; } ID - Kimlik + Kod @@ -7300,7 +7163,7 @@ p, li { white-space: pre-wrap; } Unknown Peer - Bilinmeyen Eş + Eş Bilinmiyor @@ -7310,7 +7173,7 @@ p, li { white-space: pre-wrap; } Unknown - Bilinmeyen + Bilinmiyor @@ -7328,12 +7191,12 @@ p, li { white-space: pre-wrap; } [Unknown identity] - [Bilinmeyen Kimlik] + [Kimlik Bilinmiyor] : Service ID = - : Hizmet Kimliği = + : Hizmet Kodu = @@ -7341,7 +7204,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - Grup Sohbetini Görüntüleyin + Grup Sohbetini Görüntüle @@ -7349,7 +7212,7 @@ p, li { white-space: pre-wrap; } [Unknown] - [Bilinmeyen] + [Bilinmiyor] @@ -7385,72 +7248,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Klasör içeriği arkadaş düğümler tarafından görülebilir (sağdaki listeye bakın) Directory content is NOT visible to friend nodes - + Klasör içeriği arkadaş düğümler tarafından görüleMEZ Directory can be searched anonymously - + Klasör isimsiz olarak aranabilir Directory cannot be searched anonymously - + Klasör isimsiz olarak aranamaz Files can be accessed using anonymous tunnels - + Dosyalara isimsiz tüneller kullanılarak erişilebilir Files can be accessed using anonymous & end-to-end encrypted tunnels - + Dosyalara isimsiz ve uçtan uca şifrelenmiş tüneller kullanılarak erişilebilir Files cannot be downloaded anonymously - + Dosyalar isimsiz olarak indirilemez All friend nodes can see this directory - + Tüm arkadaş düğümler bu klasörü görebilir Only visible to friend nodes in groups: %1 - + Yalnız şu gruptaki arkadaş düğümleri görebilir: %1 Not visible to friend nodes - + Arkadaş düğümler göremez Files can be downloaded (but not searched) anonymously - + Dosyalar isimsiz olarak indirilebilir (ancak aranamaz) Files can be downloaded and searched anonymously - + Dosyalar isimsiz olarak indirilebilir ve aranabilir Files can be searched (but not downloaded) anonymously - + Dosyalar isimsiz olarak aranabilir (ancak indirilemez) No one can anonymously access/search these files. - + Hiç kimse bu dosyalara isimsiz olarak erişemez ve arayamaz. @@ -7471,22 +7334,22 @@ p, li { white-space: pre-wrap; } Share - Paylaşın + Paylaş Contacts: - Rehber: + Kişiler: Share channel publish permissions - Kanal yayınlama izinlerini paylaşın + Kanal yayınlama izinlerini paylaş You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - Arkadaşlarınıza kanalınızda yayın yapma izni verebilir ya da herkese açık izinleri başka bir RetroShare kopyanıza gönderebilirsiniz. Bu kanalda yayın yapabilecek arkadaşlarınızı seçin. Not: verilen kanal yayınlama izinlerinin geri alınamayacağını unutmayın. + Arkadaşlarınıza kanalınızda yayın yapma izni verebilir ya da herkese açık izinleri kullandığınız başka bir RetroShare kopyasına gönderebilirsiniz. Bu kanalda yayın yapabilecek arkadaşlarınızı seçin. Not: verilen kanal yayınlama izinlerinin geri alınamayacağını unutmayın. @@ -7496,7 +7359,7 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - Forum yönetici izinlerini paylaşın + Forum yönetici izinlerini paylaş @@ -7506,7 +7369,7 @@ p, li { white-space: pre-wrap; } Share topic admin permissions - Konu yönetici izinlerini paylaşın + Konu yönetici izinlerini paylaş @@ -7539,62 +7402,58 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + Azalan Düzende Sırala Sort Ascending Order - + Artan Düzende Sırala Sort by Name - Ada Göre Sıralayın + Ada Göre Sırala Sort by Popularity - Beğeniye Göre Sıralayın + Beğeniye Göre Sırala Sort by Last Post - Son İletiye Göre Sıralayın + Son İletiye Göre Sırala Sort by Number of Posts - - - - Sort by Posts - İletilere Göre Sıralayın + İleti Sayısına Göre Sırala Sort by Unread - + Okunmamışlara Göre Sırala You are admin (modify names and description using Edit menu) - Yöneticisiniz (ad ve açıklamaları Düzenle menüsünden değiştirin) + Yöneticisiniz (Düzenle menüsünden ad ve açıklamaları değiştirebilirsiniz) You have been granted as publisher (you can post here!) - Yayıncı rolüne atandınız (buraya gönderebilirsiniz!) + Yayıncı rolüne atandınız (buraya ileti gönderebilirsiniz!) Last Post - Son İleti + Son İleti Never - Hiç + Hiç @@ -7672,37 +7531,37 @@ p, li { white-space: pre-wrap; } is - şuna eşir + şu olan less than - şundan küçük + şundan küçük olan less than or equal - şundan küçük ya da eşit + şundan küçük ya da eşit olan equals - şuna eşit + şuna eşit olan greater than or equal - şundan büyük ya da eşit + şundan büyük ya da eşit olan greater than - şundan büyük + şundan büyük olan is in range - şu aralıkta + şu aralıkta olan @@ -7731,7 +7590,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Kanallar</h1> <p>Kanallar ağa yaymak istediğiniz verileri (film, müzik gibi) göndermenizi sağlar.</p> <p>Arkadaşlarınızın abone olduğu kanalları görebilirsiniz. Abone olduğunuz kanallar da otomatik olarak arkadaşlarınıza iletilir. Böylece ağdaki iyi kanallar öne çıkar.</p> <p>Bir kanala yalnız kanalı oluşturan kişi veri gönderebilir. Kanal özel bir kanal değilse ağdaki diğer eşler bu verileri yalnızca okuyabilir. Bununla birlikte veri gönderme ya da okuma izinlerini arkadaşınız oluan RetroShare düğümleri ile paylaşabilirsiniz.</p> <p>Kanallar isimsiz olabileceği gibi bir RetroShare kimliğiyle ilişkilendirilebilir. Böylece okuyucular gerek duyduğunda sizinle iletişim kurabilir. Gönderdiğiniz verilere kullanıcıların yorum yapmasını istiyorsanız "Yorumlar Kullanılsın" seçeneğini etkinleştirin.</p> <p>Bu değeri değiştirmediyseniz, kanala gönderilen veriler %1 gün tutulur ve son %2 gündeki veriler eşitlenir.</p> @@ -7761,7 +7620,7 @@ p, li { white-space: pre-wrap; } Set download directory - İndirme klasörünü ayarlayın + İndirme klasörünü ayarla @@ -7785,7 +7644,7 @@ p, li { white-space: pre-wrap; } Download - İndirin + İndir @@ -7795,7 +7654,7 @@ p, li { white-space: pre-wrap; } Open folder - Klasörü açın + Klasörü aç @@ -7825,7 +7684,7 @@ p, li { white-space: pre-wrap; } Can't open folder - Klasör açılamıyor + Klasör açılamadı @@ -7866,7 +7725,7 @@ p, li { white-space: pre-wrap; } Create New Channel - Yeni Kanal Ekleyin + Yeni Kanal Ekle @@ -7876,12 +7735,12 @@ p, li { white-space: pre-wrap; } Edit Channel - Kanalı Düzenleyin + Kanalı Düzenle Add Channel Admins - Kanal Yöneticileri Ekleyin + Kanal Yöneticileri Ekle @@ -7891,12 +7750,12 @@ p, li { white-space: pre-wrap; } Update Channel - Kanalı Güncelleyin + Kanalı Güncelle Create - Ekleyin + Ekle @@ -7904,18 +7763,18 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - Kanala Abone Olun + Kanala Abone Ol Expand - Genişletin + Genişlet Remove Item - Ögeyi Silin + Ögeyi Sil @@ -7930,12 +7789,12 @@ p, li { white-space: pre-wrap; } New Channel - Kanal Ekleyin + Kanal Ekle Hide - Gizleyin + Gizle @@ -7953,18 +7812,18 @@ p, li { white-space: pre-wrap; } Toggle Message Read Status - İleti Okundu Durumunu Değiştirin + İleti Okundu Durumunu Değiştir Download - İndirin + İndir Play - Oynatın + Oynat @@ -7975,33 +7834,33 @@ p, li { white-space: pre-wrap; } Edit - Düzenleyin + Düzenle Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare Bağlantısını Kopyala Unsubscribe From Channel - Kanal Aboneliğinden Ayrılın + Kanal Aboneliğinden Ayrıl Expand - Genişletin + Genişlet Set as read and remove item - Okundu olarak işaretleyip ögeyi silin + Ögeyi okundu olarak işaretleyip sil Remove Item - Ögeyi Silin + Ögeyi Sil @@ -8021,7 +7880,7 @@ p, li { white-space: pre-wrap; } Hide - Gizleyin + Gizle @@ -8057,22 +7916,22 @@ p, li { white-space: pre-wrap; } Comments - + Yorumlar Open - Açın + Open File - Dosyayı Açın + Dosyayı Aç Play Media - Ortamı Oynatın + Ortamı Oynat @@ -8080,13 +7939,13 @@ p, li { white-space: pre-wrap; } Post to Channel - Kanala Gönderin + Kanala Gönder Add new post - + Yeni ileti oluştur @@ -8136,7 +7995,7 @@ p, li { white-space: pre-wrap; } Never - Hiç + Hiç @@ -8166,22 +8025,22 @@ p, li { white-space: pre-wrap; } Disable Auto-Download - Otomatik İndirmeyi Devre Dışı Bırakın + Otomatik İndirmeyi Devre Dışı Bırak Enable Auto-Download - Otomatik İndirmeyi Etkinleştirin + Otomatik İndirmeyi Etkinleştir Show feeds - Akışları görüntüleyin + Akışları görüntüle Show files - Dosyaları görüntüleyin + Dosyaları görüntüle @@ -8191,13 +8050,13 @@ p, li { white-space: pre-wrap; } Last Post: - + Son İleti: unknown - bilinmeyen + bilinmiyorr @@ -8235,7 +8094,7 @@ p, li { white-space: pre-wrap; } Channel Post - Kanal Gönderisi + Kanal İletisi @@ -8243,48 +8102,48 @@ p, li { white-space: pre-wrap; } Details - Ayrıntılar + Ayrıntılar Remove Item - + Ögeyi Sil for identity - şu kimlik için + şu kimlik için You received a membership request for circle: - + Şu çevreye üyelik talebi aldınız: Grant membership request - + Üyelik onayı talebi Revoke membership request - + Üyelik iptali talebi You received an invitation for circle: - + Şu çevreye davet edildiniz: Accept invitation - + Daveti kabul et Received event from unknown Circle: - + Bilinmeyen bir Çevreden etkinlik alındı: @@ -8320,12 +8179,12 @@ p, li { white-space: pre-wrap; } Voter ID: - Oylayan Kimliği: + Oylayan Kodu: Refresh - Yenileyin + Yenile @@ -8350,7 +8209,7 @@ p, li { white-space: pre-wrap; } UpVotes - Beğenen Oyları + Beğenen Oylar @@ -8368,17 +8227,17 @@ p, li { white-space: pre-wrap; } Reply to Comment - Yorumu Yanıtlayın + Yorumu Yanıtla Submit Comment - Yorumu Gönderin + Yorumu Gönder Copy Comment - + Yorumu Kopyala @@ -8396,14 +8255,14 @@ p, li { white-space: pre-wrap; } Make Comment - Yorum Yapın + Yorum Yap <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8419,7 +8278,7 @@ p, li { white-space: pre-wrap; } Comment Signing Error - Yorum İmzalama Düzenleyicisi + Yorum İmzalama Sorunu @@ -8434,7 +8293,7 @@ bir kimlik oluşturmalısınız Create New Forum - Forum Ekleyin + Forum Ekle @@ -8444,17 +8303,17 @@ bir kimlik oluşturmalısınız Edit Forum - Forumu Düzenleyin + Forumu Düzenle Update Forum - Forumu Güncelleyin + Forumu Güncelle Add Forum Admins - Forum Yöneticileri Ekleyin + Forum Yöneticileri Ekle @@ -8464,7 +8323,7 @@ bir kimlik oluşturmalısınız Create - Ekleyin + Ekle @@ -8472,18 +8331,18 @@ bir kimlik oluşturmalısınız Subscribe to Forum - Foruma Abone Olun + Foruma Abone Ol Expand - Genişletin + Genişlet Remove Item - Ögeyi Silin + Ögeyi Sil @@ -8498,12 +8357,12 @@ bir kimlik oluşturmalısınız New Forum - Forum Ekleyin + Forum Ekle Hide - Gizleyin + Gizle @@ -8517,23 +8376,23 @@ bir kimlik oluşturmalısınız Unsubscribe To Forum - Forum Aboneliğinden Ayrılın + Forum Aboneliğinden Ayrıl Expand - Genişletin + Genişlet Set as read and remove item - Okundu olarak işaretleyin ve ögeyi silin + Ögeyi okundu olarak işaretleyip silin Remove Item - Ögeyi Silin + Ögeyi Sil @@ -8553,7 +8412,7 @@ bir kimlik oluşturmalısınız Hide - Gizleyin + Gizle @@ -8566,7 +8425,7 @@ bir kimlik oluşturmalısınız Start new Thread for Selected Forum - Seçilmiş Foruma Yeni Konu Ekleyin + Seçilmiş Foruma Yeni Konu Ekle @@ -8581,7 +8440,7 @@ bir kimlik oluşturmalısınız New Thread - Konu Ekleyin + Yeni Konu @@ -8615,7 +8474,7 @@ bir kimlik oluşturmalısınız Save image - Görseli Kaydedin + Görseli Kaydet @@ -8626,7 +8485,7 @@ bir kimlik oluşturmalısınız Reply Message - İletiyi Yanıtlayın + İletiyi Yanıtla @@ -8641,7 +8500,7 @@ bir kimlik oluşturmalısınız Download all files - Tüm dosyaları indirin + Tüm dosyaları indir @@ -8676,7 +8535,7 @@ 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> - + <p>Foruma abone olduğunuzda diğer abone olan arkadaşlarınızın gönderilerini alabilir ve forumu tüm diğer arkadaşlarınıza görünür kılabilirsiniz..</p><p>İstediğinizde soldaki forum listesine sağ tıklayarak abonelikten ayrılabilirsiniz.</p> @@ -8688,28 +8547,28 @@ bir kimlik oluşturmalısınız Reply - Yanıtlayın + Yanıtla Start New Thread - Yeni Konu Ekleyin + Yeni Konu Ekle Expand all - Tümünü Genişletin + Tümünü Genişlet Collapse all - Tümünü Daraltın + Tümünü Daralt Mark as read - Okunmuş Olarak İşaretleyin + Okunmuş Olarak İşaretle @@ -8721,22 +8580,22 @@ bir kimlik oluşturmalısınız Mark as unread - Okunmamış Olarak İşaretleyin + Okunmamış Olarak İşaretle Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare Bağlantısını Kopyala Hide - Gizleyin + Gizle Expand - Genişletin + Genişlet @@ -8746,7 +8605,7 @@ bir kimlik oluşturmalısınız [unknown] - [bilinmeyen] + [bilinmiyor] @@ -8798,7 +8657,7 @@ bir kimlik oluşturmalısınız signed - imzali + imzalanmış @@ -8813,7 +8672,7 @@ bir kimlik oluşturmalısınız <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - <p><font color="#ff0000"><b>Bu iletinin yazarı (%1 kimlikli) engellendi.</b> + <p><font color="#ff0000"><b>Bu iletinin yazarı (%1 kodlu) engellendi.</b> @@ -8828,7 +8687,7 @@ bir kimlik oluşturmalısınız <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">Bu kimlik için ileti görünürlüğü ve iletim için zorlama ayarları Kişi sekmesinden yapılabilir.</font></b></p> + <p><b><font color="#ff0000">Bu kod için ileti görünürlük ve iletim ayarları Kişi sekmesinden değiştirilebilir.</font></b></p> @@ -8854,7 +8713,7 @@ bir kimlik oluşturmalısınız You cant reply to a non-existant Message - Varolmayan bir iletiyi yanıtlayamazsınız + Var olmayan bir iletiyi yanıtlayamazsınız @@ -8871,127 +8730,130 @@ bir kimlik oluşturmalısınız New thread - + Yeni konu Read status - + Okunma durumu Edit - Düzenleyin + Düzenle Reply to author with private message - + Yazarı özel ileti ile yanıtlayın Give positive opinion - + Olumlu olarak değerlendir This will block/hide messages from this person, and notify friend nodes. - + Bu işlem bu kişiden gelen iletileri engeller/gizler ve komşu düğümlere uyarı bildirimi gönderir. Give neutral opinion - + Kararsız olarak değerlendir Doing this, you trust your friends to decide to forward this message or not. - + Bunu yaparak bu iletiyi iletip iletmemeleri konusunda arkadaşlarınıza güvenirsiniz. Give negative opinion - + Olumsuz olarak değerlendir Show author in people tab - + Kişiler sekmesinde yazar görüntülensin Author's reputation - + Yazarın değerlendirmesi Anonymous/unknown posts forwarded if reputation is positive - + Değerlendirme olumlu ise İsimsiz/bilinmeyen iletiler iletilir Anonymous posts forwarded if reputation is positive - + Değerlendirme olumlu ise İsimsiz iletiler iletilir Last post - + Son ileti Never - Hiç + Hiç Synchronization - + Eşitleme Storage - + Depolama Information for this identity is currently missing. - + Bu kimlikle ilgili bilgiler şu anda eksik. You have banned this ID. The message will not be displayed nor forwarded to your friends. - + Bu kodu engellediniz. Bu leti arkadaşlarınıza +görüntülenmeyecek ve iletilmeyecek. You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Bu kişiyle ilgili bir değerlendirme yapmamışsınız ve +arkadaşlarınız da olumlu olarak değerlendirmemiş: +İstenmeyen ileti kuralı bu iletinin arkadaşlarınıza iletilmesini engeller. Message will be forwarded to your friends. - + İleti arkadaşlarınıza iletilecek. (Latest) - + (En yeni) (Old) - + (Eski) You cant act on the author to a non-existant Message - + Var olmayan bir iletinin yazarına işlem yapamazsınız @@ -9052,7 +8914,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forumlar</h1> <p>RetroShare Forumları İnternet forumları gibi görünür, ancak merkezi olmayan bir şekilde çalışır.</p> <p>Arkadaşlarınızın abone olduğu forumları görebilir ve abone olduğunuz forumları arkadaşlarınıza iletebilirsiniz. Böylece ilgi gören forumlar ağ üzerinde kendiliğinden üst sıralara çıkar.</p> <p>Başka şekilde yapılandırmadıysanız, forum iletileri %1 gün saklanır ve son %2 gündeki iletiler eşitlenir.</p> @@ -9063,7 +8925,7 @@ prevents the message to be forwarded to your friends. Create Forum - Forum Ekleyin + Forum Ekle @@ -9115,17 +8977,17 @@ prevents the message to be forwarded to your friends. Add Icon - Simge Ekleyin + Simge Ekle Key recipients can publish to restricted-type group and can view and publish for private-type channels - Temel alıcılar kısıtlamasız tipte gruplar yayınlayarak özel tipte kanalları görüp yayınlayabilir. + Temel alıcılar kısıtlanmış türde gruplar üzerinde yayınlama işlemi yapabilir ve özel türde kanallar üzerinde okuma yayınlama işlemi yapabilir. Share Publish Key - Yayınlama Anahtarını Paylaşın + Yayınlama Anahtarını Paylaş @@ -9135,7 +8997,7 @@ prevents the message to be forwarded to your friends. Share Key With - Anahtarı Şunlarla Paylaşın + Anahtarı Şunlarla Paylaş @@ -9148,10 +9010,6 @@ prevents the message to be forwarded to your friends. Message Distribution İleti Dağıtımı - - <html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - <html><head/><body><p>İletiler, oluşturduğunuz kanal, forum ya da gönderiye abone oldukça, arkadaş düğümleriniz aracılığı ile yayılır.</p></body></html> - @@ -9160,24 +9018,20 @@ prevents the message to be forwarded to your friends. Public Herkese Açık - - Only For Your Friends - Yalnız Arkadaşlarınız İçin - Publish Signatures - İmzaları Yayınlayın + İmzaları Yayınla Open - Açın + New Thread - Konu Ekleyin + Konu Ekle @@ -9254,7 +9108,7 @@ prevents the message to be forwarded to your friends. Contacts: - Rehber: + Kişiler: @@ -9293,7 +9147,7 @@ prevents the message to be forwarded to your friends. Never - Hiç + Hiç @@ -9308,17 +9162,17 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - Bilinen bir kimliğin PGP imzası zorunlu + Bilinen bir kodun PGP imzası zorunludur Load Group Logo - Grup Logosunu Yükleyin + Grup Logosunu Yükle Submit Group Changes - Grup Değişikliklerini Gönderin + Grup Değişikliklerini Gönder @@ -9349,7 +9203,7 @@ prevents the message to be forwarded to your friends. ID - Kimlik + Kod @@ -9359,7 +9213,7 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>İletiler, oluşturduğunuz kanal, forum ya da gönderiye abone olundukça, arkadaş düğümleriniz aracılığı ile yayılır.</p></body></html> @@ -9379,7 +9233,7 @@ prevents the message to be forwarded to your friends. Restricted node group - + Kısıtlı düğüm grubu @@ -9389,27 +9243,27 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - <html><head/><body><p>Bu açılan kutudan , gönderenin düğümüne göre iletilerin nasıl işleneceğini seçilebilir.</p><p><span style=" font-weight:600;">Tümüne izin verilsin</span>: Tüm iletilere aynı şekilde davranılır.</p><p><span style=" font-weight:600;">İmzasız kimliklerden gelen iletiler gözden düşürülsün</span>: İsimsiz kimliklerden gelen iletilerin değerlendirmesi, alınması ya da iletilmesi için 0.4 olmalıdır.</p><p><span style=" font-weight:600;">İmzasız ve bilinmeyen düğümlerdeki kimliklerden gelen iletiler gözden düşürülsün</span>: İsimsiz ve bilinmeyen RetroShare düğümleri tarafından imzalanmış kimliklerden gelen iletilerin değerlendirmesi, alınması ya da iletilmesi için 0.4 olmalıdır.</p></body></html> + <html><head/><body><p>Bu açılan kutudan , gönderenin düğümüne göre iletilerin nasıl işleneceğini seçilebilir.</p><p><span style=" font-weight:600;">Tümüne izin verilsin</span>: Tüm iletilere aynı şekilde davranılır.</p><p><span style=" font-weight:600;">İmzasız kimliklerden gelen iletiler gözden düşürülsün</span>: İsimsiz kodlardan gelen iletilerin değerlendirmesi, alınması ya da iletilmesi için 0.4 olmalıdır.</p><p><span style=" font-weight:600;">İmzasız ve bilinmeyen düğümlerdeki kodlardan gelen iletiler gözden düşürülsün</span>: İsimsiz ve bilinmeyen RetroShare düğümleri tarafından imzalanmış kodlardan gelen iletilerin değerlendirmesi, alınması ya da iletilmesi için 0.4 olmalıdır.</p></body></html> All allowed - Tümü onaylandı + Tümüne izin verildi Defavor unsigned IDs - İmzasız kimlikleri gözden düşür + İmzasız kodları gözden düşür Defavor unsigned IDs and IDs from unknown nodes - İmzasız ve bilinmeyen düğüm kimliklerini gözden düşür + İmzasız ve bilinmeyen düğüm kodlarını gözden düşür Popularity - Beğenirlik + Beğenilme @@ -9424,7 +9278,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - GxsKimlikEtiketi + GxsKodEtiketi @@ -9442,7 +9296,7 @@ prevents the message to be forwarded to your friends. Print - Yazdırın + Yazdır @@ -9452,12 +9306,12 @@ prevents the message to be forwarded to your friends. Unsubscribe - Abonelikten Ayrılın + Abonelikten Ayrıl Subscribe - Abone Olun + Abone Ol @@ -9472,79 +9326,79 @@ prevents the message to be forwarded to your friends. Edit Details - Ayrıntıları Düzenleyin + Ayrıntıları Düzenle Synchronise posts of last... - + İletilerin eşitleneceği süre... 5 days - + 5 gün 2 weeks - + 2 hafta 1 month - + 1 ay 3 months - + 3 ay 6 months - + 6 ay 1 year - + 1 yıl Indefinitly - + Sınırsız Store posts for at most... - + İletilerin saklanacağı süre... Share publish permissions - Herkese açık izinleri paylaşın + Yayınlama izinlerini paylaş Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare Bağlantısını Kopyala Mark all as read - Tümünü okundu olarak işaretleyin + Tümünü okundu olarak işaretle Mark all as unread - Tümünü okunmamış olarak işaretleyin + Tümünü okunmamış olarak işaretle @@ -9562,7 +9416,7 @@ prevents the message to be forwarded to your friends. Create new Identity - Kimlik Oluşturun + Yeni Kimlik Ekle @@ -9598,7 +9452,7 @@ prevents the message to be forwarded to your friends. unknown Key - Bilinmeyen Anahtar + Anahtar Bilinmiyor @@ -9623,7 +9477,7 @@ prevents the message to be forwarded to your friends. [Unknown] - [Bilinmeyen] + [Bilinmiyor] @@ -9644,107 +9498,107 @@ prevents the message to be forwarded to your friends. Router Statistics - Yöneltici İstatistikleri + Yönlendirici İstatistikleri GroupBox - Grup Kutusu + Grup Kutusu ID - + Kod Destination - Hedef + Hedef Data status - Veri Durumu + Veri Durumu Data size - + Veri boyutu Data hash - Veri Karması + Veri karılımı Sending time (secs ago) - Gönderme süresi (saniye önce) + Gönderme süresi (saniye önce) Group ID - + Grup kodu Gxs Transport Groups: - + Gxs Nakil Grupları: Group ID / Author - + Grup Kodu / Yazar Number of messages / Publish TS - + İleti sayısı / Yayım Zamanı Local size of data - + Yerel veri boyutu Subscribed - + Abone Popularity - + Beğenilme Details - Ayrıntılar + Ayrıntılar Unknown Peer - Bilinmeyen Eş + Eş Bilinmiyor Pending data items - + Bekleyen veri nesneleri Unknown - + Bilinmiyor Yes - Evet + Evet No - Hayır + Hayır @@ -9787,7 +9641,7 @@ prevents the message to be forwarded to your friends. Unknown Peer - Bilinmeyen Eş + Eş Bilinmiyor @@ -9796,7 +9650,7 @@ prevents the message to be forwarded to your friends. Drop file error. - Dosya bırakma hatası. + Dosya bırakma sorunu. @@ -9856,12 +9710,12 @@ prevents the message to be forwarded to your friends. Search - Ara + Arama Searching for: - Şu aranıyor: + Aranan ifade: @@ -9963,7 +9817,7 @@ prevents the message to be forwarded to your friends. Text not found in document - Metin belgede bulunamadı + Aranan metin belgede bulunamadı @@ -9989,21 +9843,37 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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-family:'MS Shell Dlg 2'; font-weight:600;">RetroShare Açık Kaynaklı platformlar arası, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">kişisel ve güvenli, merkezi olmayan bir iletişim platformudur. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Kimliği doğrulanmış eşler ağı ve OpenSSL ile şifrelenmiş ilerişim üzerinden </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">arkadaşlarınız ile güvenli sayısal içerik 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-family:'MS Shell Dlg 2'; font-weight:600;">RetroShare dosya paylaşımı, sohbet, iletiler ve kanallar gibi özellikler sunar</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Ayrıntılı bilgi alınabilecek 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-family:'MS Shell Dlg 2'; 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 Web Sayfası</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Wiki Sayfası</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Forumu</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Proje Sayfası</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Takım Bloğu</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Geliştirici Twitter Hesabı</span></a></li></ul></body></html> @@ -10025,18 +9895,31 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + <span style=" font-size:8pt; font-weight:600;"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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; font-weight:600;">RetroShare Translations:</span></p> +<p 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; font-weight:600;">RetroShare Çevirileri:</span></p> <p style="-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;"><br /></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=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p 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; font-weight:600;">RetroShare Web Sitesi Çevirmenleri:</span></p> <p style="-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; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</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:8pt; font-weight:600;">İsveçce: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Almanca: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Lehçe: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> @@ -10072,7 +9955,7 @@ p, li { white-space: pre-wrap; } 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 seçtiğiniz bağlantıları varsayılan web tarayıcınızda açabilir. Tarayıcınız Tor yazılımını kullanacak şekilde ayarlanmamışsa isteğiniz isimsiz olmaz. + RetroShare seçtiğiniz bağlantıları varsayılan web tarayıcınızda açabilir. Tarayıcınız Tor yazılımını kullanacak şekilde yapılandırılmamış ise isteğiniz isimsiz olmaz. @@ -10082,7 +9965,7 @@ p, li { white-space: pre-wrap; } Unable to Open Link - Bağlantı Açılamıyor + Bağlantı Açılamadı @@ -10092,7 +9975,7 @@ p, li { white-space: pre-wrap; } Error opening help file: - Yardım dosyası açılırken bir sorun çıktı: + Yardım dosyası açılırken sorun çıktı: @@ -10100,114 +9983,115 @@ p, li { white-space: pre-wrap; } Form - Form + Form Did you receive a certificate from a friend? - + Bir arkadaşınızdan bir sertifika dosyası aldınız mı? Add friends certificate - + Arkadaş sertifikasını ekle Add certificate file - + Sertifika dosyası ekle Share your RetroShare Key - + RetroShare Anahtarınızı Paylaşın ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + Aşağıdaki metin sizin RetroShare sertifikanızdır. Bu metni arkadaşlarınıza gönderin Open Source cross-platform, private and secure decentralized communication platform. - + Açık Kaynaklı platformlar arası, +merkezi olmayan kişisel ve güvenli bir iletişim platformu. Launch startup wizard - + Başlangıç yardımcısını çalıştır Do you need help with RetroShare? - + RetroShare hakkında yardıma ihtiyacınız var mı? Open Web Help - + Web Yardımını Aç Copy your Cert to Clipboard - Sertifikanızı panoya kopyalayın + Sertifikanızı Panoya Kopyalayın Save your Cert into a File - Sertifikanızı bir dosyaya kaydedin + Sertifikanızı Bir Dosyaya Kaydedin Send via Email - + E-posta ile Gönder Invite via WebMail - + WebMail ile Çağır Recommend friends to each others - + Arkadaşlarınızı birbirine önerin <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;RetroShare uygulamasına hoş geldiniz!</h1> <p><b>Arkadaş</b> edinmeniz gerek! Bir arkadaş ağı oluşturduğunuzda ya da var olan bir ağa katıldığınızda, dosya gönderip almak, sohbet etmek ve forumlarda yazışmak gibi işlemler yapabilirsiniz. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>Bunun için, bu sayfadaki sertifikanızı kopyalayıp arkadaşlarınıza gönderin ve arkadaşınızın sertifikasını ekleyin.</p> <p>Diğer bir seçenek İnternet üzerinde "Retroshare chat servers" (bağımsız olarak yönetilirler) ifadesini aramaktır. Bu sunucular adanmış bir RetroShare düğümü ile sertifika değiş tokuşu yapabilmenizi sağlar. Böylece başka kişilerle isimsiz olarak tanışabilirsiniz.</p> RetroShare Invite - RetroShare Çağrı + RetroShare Çağrı Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Sertifikanız Panoya kopyalandı, e-postanıza yapıştırarak ya da başka bir şekilde arkadaşınıza iletebilirsiniz Save as... - + Farklı kaydet... RetroShare Certificate (*.rsc );;All Files (*) - + RetroShare Sertifikası (* rsc.);; Tüm Dosyalar (*) Home - Ana Sayfa + Ana Sayfa @@ -10226,32 +10110,37 @@ private and secure decentralized communication platform. Friends votes: - + Arkadaş oyları: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">Bir kimlik hakkındaki değerlendirmeniz, bu kimliğin siz ve arkadaşlarınıza görüntülenmesini belirler. Değerlendirmeniz arkadaşlarınızla paylaşılır ve değerlendirme notunun hesaplanmasında kullanılır: Bir kimlik hakkındaki değerlendirmeniz kararsız ise, değerlendirme notu arkadaşlarınızın değerlendirmelerinin ortalaması olur. Kararsız değil ise sizin değerlendirmeniz notu belirler.</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:9pt;">Genel not her bir kimliğin sohbet odaları, forumlar ve kanallarda yapabileceği işlemleri belirler. Genel not -0.6 değerinden düşükse, bu kimlikten gelen ve ona gönderilen tüm forum/kanal iletiler engellenir. Ayrıca kötü değerlendirmelere karşı daha duyarlı bazı forumlarda daha yüksek değerlendirme notu gerektiren özel anti-spam işaretleri bulunur. Engellenen kimliklerin etkinliği yavaşça azalır ve bir süre sonra kaybolur (30 gün sonra). </span></p></body><html>" Owner node ID : - Sahibin düğüm kimliği : + Sahip düğüm kodu : Type: - Tip: + Tür: Owner node name : - Sahibin düğüm adı : + Sahip düğüm adı : @@ -10271,12 +10160,12 @@ p, li { white-space: pre-wrap; } Ban-option: - + Engelleme seçeneği: Auto-Ban all identities signed by the same node - + Aynı düğüm tarafından imzalanmış tüm kimlikler otomatik engellensin @@ -10287,28 +10176,28 @@ p, li { white-space: pre-wrap; } Send Invite - Çağrı Gönderin + Çağrı Gönder Positive votes - + Olumlu değerlendirmeler 0 - 0 + 0 Negative votes - + Olumsuz değerlendirmeler <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>Komşu düğümlerin bu kimlik hakkında ortalama değerlendirmesi. Negatif kötü,</p><p>pozitif iyi, sıfır nötrdür</p></body></html> + <html><head/><body><p>Komşu düğümlerin bu kimlik hakkında ortalama değerlendirmesi. Olumsuz kötü,</p><p>olumlu iyi, sıfır kararsızdır</p></body></html> @@ -10318,49 +10207,49 @@ p, li { white-space: pre-wrap; } Negative - Negatif + Olumsuz Neutral - Nötr + Kararsız Positive - Pozitif + Olumlu <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>Siz ve arkadaşlarınız için hesaplanmış genel değerlendirme notu.</p><p>Negatif kötü, pozitif iyi, sıfır nötrdür. Not çok düşükse,</p><p>kimlik kötü olarak işaretlenir ve forumlar, sohbet odaları,</p><p>kanallar gibi ögelerin dışında bırakılır.</p></body></html> + <html><head/><body><p>Siz ve arkadaşlarınız için hesaplanmış genel değerlendirme notu.</p><p>Olumsuz kötü, olumlu iyi, sıfır kararsızdır. Not çok düşükse,</p><p>kimlik kötü olarak işaretlenir ve forumlar, sohbet odaları,</p><p>kanallar gibi ögelerin dışında bırakılır.</p></body></html> Overall: - Genel Not: + Genel Değerlendirme: [unverified] - [doğrulanmamış] + [doğrulanmamış] Unknown real name - Bilinmeyen gerçek ad + Gerçek ad bilinmiyor Anonymous Id - İsimsiz Kimlik + İsimsiz Kod Identity owned by you, linked to your Retroshare node - Size ait kimlik, RetroShare düğümünüze bağlı + RetroShare düğümünüze bağlı size ait kimlik @@ -10380,7 +10269,7 @@ p, li { white-space: pre-wrap; } Owned by unknown Retroshare node - Bilinmeyen bir Retroshare düğümüne ait + Bilinmeyen bir RetroShare düğümüne ait @@ -10400,57 +10289,57 @@ p, li { white-space: pre-wrap; } +5 Anon Id - +5 İsimsiz Kimlik + +5 İsimsiz Kod positive - + olumlu negative - + olumsuz No votes from friends - + Arkadaşlarınız değerlendirmemiş Negative (Banned by you) - + Olumsuz (Sizin tarafınızdan engellenmiş) Positive (according to your friends) - + Olumlu (arkadaşlarınıza göre) Negative (according to your friends) - + Olumsuz (arkadaşlarınıza göre) Hi,<br>I want to be friends with you on RetroShare.<br> - Merhaba,<br>RetroShare üzerinde sizinle arkadaş olmak istiyorum.<br> + Merhaba,<br>RetroShare üzerinde sizinle arkadaş olmak istiyorum.<br> You have a friend invite - + Bir arkadaşlık isteğiniz var Respond now: - + Şimdi yanıtlayın: Thanks, <br> - Teşekkürler, <br> + Teşekkürler, <br> @@ -10474,12 +10363,12 @@ p, li { white-space: pre-wrap; } Anonymous Id - İsimsiz Kimlik + İsimsiz Kod Create new Identity - Yeni kimlik ekleyin + Yeni kimlik ekle @@ -10494,7 +10383,7 @@ p, li { white-space: pre-wrap; } Votes - + Değerlendirmeler @@ -10504,61 +10393,43 @@ p, li { white-space: pre-wrap; } Close - + Kapat Ban-option: - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">Bir kimlik hakkındaki değerlendirmeniz, bu kimliğin siz ve arkadaşlarınıza görüntülenmesini belirler. Değerlendirmeniz arkadaşlarınızla paylaşılır ve değerlendirme notunun hesaplanmasında kullanılır: Bir kimlik hakkındaki değerlendirmeniz nötr ise, değerlendirme notu arkadaşlarınızın değerlendirmelerinin ortalaması olur. Nötr değilse sizin değerlendirmeniz notu belirler.</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Genel not her bir kimliğin sohbet odaları, forumlar ve kanallarda yapabileceği işlemleri belirler. Genel not -0.6 değerinden düşükse, bu kimlikten gelen ve ona gönderilen tüm forum/kanal iletiler engellenir. Ayrıca kötü değerlendirmelere karşı daha duyarlı bazı forumlarda daha yüksek değerlendirme notu gerektiren özel anti-spam işaretleri bulunur. Engellenen kimliklerin etkinliği yavaşça azalır ve bir süre sonra kaybolur (30 gün sonra). </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> + Engelleme seçeneği: Auto-Ban all identities signed by the same node - + Aynı düğüm tarafından imzalanmış tüm kimlikler otomatik engellensin Friend votes: - + Arkadaş değerlendirmeleri: Positive votes - + Olumlu değerlendirme 0 - 0 + 0 Negative votes - + Olumsuz değerlendirme Usage statistics - + Kullanım istatistikleri @@ -10591,17 +10462,17 @@ p, li { white-space: pre-wrap; } Edit identity - Kimliği Düzenleyin + Kimliği Düzenle Delete identity - Kimliği Silin + Kimliği Sil Chat with this peer - Bu eş ile sohbet edin + Bu eş ile sohbet et @@ -10611,7 +10482,7 @@ p, li { white-space: pre-wrap; } Owner node ID : - Sahibin düğüm kimliği : + Sahip düğüm kodu : @@ -10631,7 +10502,7 @@ p, li { white-space: pre-wrap; } Send message - İleti Gönderin + İleti Gönder @@ -10646,27 +10517,27 @@ p, li { white-space: pre-wrap; } Owner node name : - Sahibin düğüm adı : + Sahip düğüm adı : Create new... - + Yeni ekle... Type: - Tip: + Tür: Send Invite - Çağrı Gönderin + Çağrı Gönder <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>Komşu düğümlerin bu kimlik hakkında ortalama değerlendirmesi. Negatif kötü,</p><p>pozitif iyi, sıfır nötrdür</p></body></html> + <html><head/><body><p>Komşu düğümlerin bu kimlik hakkında ortalama değerlendirmesi. Olumsuz kötü,</p><p>olumlu iyi, sıfır kararsızdır</p></body></html> @@ -10678,40 +10549,47 @@ 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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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;">Bir kimlik hakkındaki değerlendirmeniz, bu kimliğin siz ve arkadaşlarınıza görüntülenmesini belirler. Değerlendirmeniz arkadaşlarınızla paylaşılır ve değerlendirme notunun hesaplanmasında kullanılır: Bir kimlik hakkındaki değerlendirmeniz kararsız ise, değerlendirme notu, arkadaşlarınızın olumlu ve olumsuz değerlendirmeleri arasındaki fark olur. Kararsız değil ise sizin değerlendirmeniz notu belirler.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Genel not her bir kimliğin sohbet odaları, forumlar ve kanallarda yapabileceği işlemleri belirler. Genel not -1 değerinden düşükse, bu kimlikten gelen ve ona gönderilen tüm forum/kanal iletiler engellenir. Ayrıca kötü değerlendirmelere karşı daha duyarlı bazı forumlarda daha yüksek değerlendirme notu gerektiren özel anti-spam işaretleri bulunur. Engellenen kimliklerin etkinliği yavaşça azalır ve bir süre sonra kaybolur (5 gün sonra). </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> Negative - Negatif + Olumsuz Neutral - Nötr + Kararsız Positive - Pozitif + Olumlu <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>Siz ve arkadaşlarınız için hesaplanmış genel değerlendirme notu.</p><p>Negatif kötü, pozitif iyi, sıfır nötrdür. Not çok düşükse,</p><p>kimlik kötü olarak işaretlenir ve forumlar, sohbet odaları,</p><p>kanallar gibi ögelerin dışında bırakılır.</p></body></html> + <html><head/><body><p>Siz ve arkadaşlarınız için hesaplanmış genel değerlendirme notu.</p><p>Olumsuz kötü, olumlu iyi, sıfır kararsızdır. Not çok düşükse,</p><p>kimlik kötü olarak işaretlenir ve forumlar, sohbet odaları,</p><p>kanallar gibi ögelerin dışında bırakılır.</p></body></html> Overall: - Genel Not: + Genel Değerlendirme: @@ -10746,7 +10624,7 @@ p, li { white-space: pre-wrap; } Show Items - + Ögeleri Görüntüle @@ -10801,7 +10679,7 @@ p, li { white-space: pre-wrap; } Administrator (Can edit invite list, and request membership). - Yönetici (çağrı listesini düzenleyeblir ve üyelik isteyebilir). + Yönetici (çağrı listesini düzenleyebilir ve üyelik isteyebilir). @@ -10838,10 +10716,6 @@ p, li { white-space: pre-wrap; } Not a member (do not have access to data limited to this circle) Üye değil (bu çevrenin verilerine erişemezsiniz) - - Unknown ID : - Bilinmeyen Kod: - Identity ID: @@ -10870,7 +10744,7 @@ p, li { white-space: pre-wrap; } unknown - bilinmeyen + bilinmiyor @@ -10890,32 +10764,32 @@ p, li { white-space: pre-wrap; } Edit Circle - Çevreyi Düzenleyin + Çevreyi Düzenle See details - Ayrıntılara bakın + Ayrıntıları görüntüle Request subscription - Abonelik isteyin + Abonelik isteğinde bulun Accept circle invitation - Çevre çağrısını onaylayın + Çevre çağrısını onayla Quit this circle - Bu çevreden çıkın + Bu çevreden çık Cancel subscribe request - Abonelik isteğini iptal edin + Abonelik isteğini iptal et @@ -10928,17 +10802,17 @@ p, li { white-space: pre-wrap; } Revoke this member - Bu üyeyi reddedin + Bu üyeyi reddet Grant membership - Üyeliği onaylayın + Üyeliği onayla -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. @@ -10950,7 +10824,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. [Unknown node] - [Bilinmeyen düğüm] + [Düğüm bilinmiyor] @@ -10972,12 +10846,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Identity owned by you, linked to your Retroshare node - Kimlik size ait, RetroShare düğümünüze bağlı + RetroShare düğümünüze bağlı size ait kimlik Identity owned by you, linked to your Retroshare node but not yet validated - + RetroShare düğümünüze bağlı size ait kimlik, ancak henüz doğrulanmamış @@ -10992,33 +10866,33 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Message in chat room %1 - + %1 sohbet odasında ileti information - + bilgiler This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Bu kimlik bağlantısını panoya kopyaladınız. Bağlantıyı bir e-posta veya iletiye yapıştırarak, kimliği birine gönderebilirsiniz. Copy identity to clipboard - + Kimliği panoya kopyala Send invite? - + Çağrı gönderilsin mi? Do you really want send a invite with your Certificate? - + Sertifikanız ile bir çağrı göndermek istediğinize emin misiniz? @@ -11028,182 +10902,182 @@ Bu kimliklere yakın zamanda destek verilmeyecek. <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Kimlikler</h1> <p>Bu sekmeden <b>sahte isimsiz kimlikler</b> ve <b>çevreler</b> oluşturup düzenleyebilirsiniz. </p> <p><b>Kimlikler</b> verilerinizin güvenli olarak tanınmasını sağlamak için forum ve kanal iletilerini imzalamakta ve RetroShare iç e-posta sistemini kullanarak geri bildirimleri almak, kanal iletilerinden sonra yorum yapmak gibi işlemler için kullanılır</p> <p> Kimlikler isteğe bağlı olarak RetroShare düğümünüzün sertifikası ile <b>imzalanabilir</b>. İmzalanmış kimliklere güvenilmesi daha kolaydır ancak bunlar düğümünüzün IP adresinin kolayca belirlenmesini sağlar.</p> <p><b>İsimsiz kimlikler</b> diğer kullanıcılar ile kimliğinizi gizli tutarak etkileşimde bulunmanızı sağlar. Kandırılamazlar ancak hiç kimse verilen bir kimliğin gerçek sahibini ispatlayamaz.</p> <p><b>Çevreler</b> ağ üzerinde bir alanı paylaşan bir kimlik grubudur (isimsiz ya da imzalanmış). Çevreler forum ve kanal gibi ögelerin görüntülenmesini kısıtlamak için kullanılır. </p> <p>Bir <b>çevre</b> başka bir çevre tarafından ya da yalnız kendi üyeleri tarafından görülebilecek şekilde kendi içinde kısıtlanabilir.</p> Unknown ID: - + Kod Bilinmiyor : positive - + olumlu negative - + olumsuz No votes from friends - + Arkadaşlarınız değerlendirmemiş Negative (Banned by you) - + Olumsuz (Sizin tarafınızdan engellenmiş) Positive (according to your friends) - + Olumlu (arkadaşlarınıza göre) Negative (according to your friends) - + Olumsuz (arkadaşlarınıza göre) <b>[No record in current session]</b> - + <b>[Geçerli oturumda herhangi bir kayıt yok]</b> Channels - Kanallar + Kanallar Forums - Forumlar + Forumlar Posted - Gönderilme + Gönderilme Chat - Sohbet + Sohbet Unknown - + Bilinmiyor [Unknown] - [Bilinmeyen] + [Bilinmiyor] Admin signature in service %1 - + %1 hizmetinin yönetici imzası Admin signature verification in service %1 - + %1 hizmetinin yönetici imzasını doğrulama Creation of author signature in service %1 - + %1 hizmetinin yönetici imzasının oluşturma Message/vote/comment - + İleti/oy/yorum %1 in %2 tab - + %1 %2 sekmesinde Distant message signature validation. - + Uzak ileti imza doğrulama. Distant message signature creation. - + Uzak ileti imza oluşturma. Signature validation in distant tunnel system. - + Uzak tünel sistemi imza doğrulama. Signature in distant tunnel system. - + Uzak tünel sistemi imzası. Update of identity data. - + Kimlik verisinin güncellenmesi. Generic signature validation. - + Genel imza doğrulama. Generic signature. - + Genel imza. Generic encryption. - + Genel şifreleme. Generic decryption. - + Genel şifre çözme. Membership verification in circle %1. - + %1 çevresinde üyelik doğrulama. Add to Contacts - Kişilere Ekleyin + Kişilere Ekle Remove from Contacts - Kişilerden Silin + Kişilerden Sil Set positive opinion - Pozitif değerlendirme ayarlayın + Olumlu olarak değerlendir Set neutral opinion - Nötr değerlendirme ayarlayın + Kararsız olarak değerlendir Set negative opinion - Negatif değerlendirme ayarlayın + Olumsuz olarak değerlendir Distant chat cannot work - Sohbet başlatılamadı + Uzak sohbet yapılamaz @@ -11287,7 +11161,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. +5 Anon Id - +5 İsimsiz Kimlik + +5 İsimsiz Kod @@ -11307,7 +11181,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Node Id : - Düğüm Kimliği: + Düğüm Kodu: @@ -11369,13 +11243,13 @@ Bu kimliklere yakın zamanda destek verilmeyecek. N/A - Yok + Kullanılamıyor Edit identity - Kimliği düzenleyin + Kimliği düzenle @@ -11390,22 +11264,22 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Unknown GpgId - Bilinmeyen GpgId + GpgKodu bilinmiyor Unknown real name - Bilinmeyen gerçek ad + Gerçek ad bilinmiyor Create New Identity - Yeni Kimlik Oluşturun + Yeni Kimlik Oluştur Type - Tip + Tür @@ -11429,7 +11303,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Add - Ekleyin + Ekle @@ -11440,7 +11314,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Set Avatar - Avatarınızı Ayarlayın + Avatarı Ayarla @@ -11478,12 +11352,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. GXSId - GXSId + GXSKodu Add - Ekleyin + Ekle @@ -11523,32 +11397,32 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Copy - Kopyalayın + Kopyala Remove - Kaldırın + Sil Mark all - Tümünü işaretleyin + Tümünü işaretle Delete - Silin + Sil Clear history - Geçmişi temizleyin + Geçmişi temizle Send - Gönderin + Gönder @@ -11557,7 +11431,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Save image - Görseli kaydedin + Görseli kaydet @@ -11576,12 +11450,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Open File - Dosyayı Açın + Dosya Aç Open Folder - Klasörü Açın + Klasör Aç @@ -11591,31 +11465,27 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Check files - Dosyaları denetleyin + Dosyaları denetle Recommend in a message to... - + Şu kişiye iletiyle öner... Share on channel... - + Şu kanalda paylaş... Share on forum... - - - - Recommend in a message to - Şu kişiye iletiyle önerin + Şu forumda paylaş... Set command for opening this file - Bu dosyayı açma komutunu ayarlayın + Bu dosyayı açma komutunu ayarla @@ -11628,7 +11498,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Add Friend - Arkadaş Ekleyin + Arkadaş Ekle @@ -11638,7 +11508,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Add Share - Paylaşım Ekleyin + Paylaşım Ekle @@ -11665,7 +11535,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Quit - Çıkış + Çık @@ -11704,7 +11574,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Show/Hide - Gösterin/Gizleyin + Göster/Gizle @@ -11719,12 +11589,12 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Open Messenger - Anlık İletiyi Açın + Anlık İletiyi Aç Open Messages - İletileri Açın + İletileri Aç @@ -11744,17 +11614,17 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Minimize - Küçültün + Küçült Maximize - Büyütün + Büyüt &Quit - Çı&kış + Çı&k @@ -11794,7 +11664,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Do you really want to exit RetroShare ? - RetroShare yazılımından çıkmak istiyor musunuz? + RetroShare uygulamasından çıkmak istiyor musunuz? @@ -11804,12 +11674,12 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Hide - Gizleyin + Gizle Show - Gösterin + Görüntüle @@ -11849,7 +11719,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Show web interface - Web arayüzünü görüntüleyin + Web arayüzünü görüntüle @@ -11864,7 +11734,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Really quit ? - Gerçekten çıkılsın mı? + Gerçekten çıkmak istiyor musunuz? @@ -11924,12 +11794,12 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Increase font size - Yazı boyutunu büyütün + Yazı boyutunu büyüt Decrease font size - Yazı boyutunu küçültün + Yazı boyutunu küçült @@ -11949,12 +11819,12 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Add an Image - Bir görsel ekleyin + Bir görsel ekle Sets text font to code style - Metin yazı tipini kod stilinde ayarlayın + Metin yazı türünü kod biçeminde ayarla @@ -11985,17 +11855,17 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Recommend this friend - Bu arkadaşı önerin + Bu arkadaşı öner Set Text color - Metin rengini ayarlayın + Metin rengini ayarla Set Text background color - Metin artalan rengini ayarlayın + Metin art alan rengini ayarla @@ -12020,12 +11890,12 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Send - Gönderin + Gönder Send this message now - Bu iletiyi şimdi gönderin + Bu iletiyi şimdi gönder @@ -12035,37 +11905,37 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Toggle Contacts View - Rehber Görünümünü Değiştirin + Kişiler Görünümünü Değiştir Save - Kaydedin + Kaydet Save this message - Bu iletiyi kaydedin + Bu iletiyi kaydet Attach - Ekleyin + Dosya Ekle Attach File - Dosya Ekleyin + Dosya Ekle Quote - Alıntılayın + Alıntıla Add Blockquote - Blok Alıntısı Ekleyin + Blok Alıntısı Ekle @@ -12075,7 +11945,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. &Left - &Sola + So&la @@ -12090,7 +11960,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. &Justify - Sola &ve Sağa + &Yanlara @@ -12136,7 +12006,7 @@ Lütfen biraz boş disk alanı açıp Tamam düğmesine tıklayın. Save Message - İletiyi Kaydedin + İletiyi Kaydet @@ -12148,27 +12018,27 @@ Do you want to save message to draft box? Paste RetroShare Link - RetroShare Bağlantısını Yapıştırın + RetroShare Bağlantısını Yapıştır Add to "To" - "Kime" bölümüne ekleyin + "Kime" alanına ekle Add to "CC" - "Kopya" bölümüne ekleyin + "Kopya" alanına ekle Add to "BCC" - "Gizli kopya" bölümüne ekleyin + "Gizli Kopya" alanına ekle Add as Recommend - Öneri Olarak Ekleyin + Öneri Olarak Ekle @@ -12212,7 +12082,7 @@ Do you want to save message to draft box? Re: - Yanıt: + Ynt: @@ -12245,7 +12115,7 @@ Do you want to save message to draft box? Unknown - Bilinmeyen + Bilinmiyor @@ -12285,12 +12155,12 @@ Do you want to save message to draft box? &Export PDF... - &PDF Olarak Ver... + &PDF Olarak Dışa Aktar.. &Quit - Çı&kış + Çı&k @@ -12330,12 +12200,12 @@ Do you want to save message to draft box? &Contacts Sidebar - &Rehber Yançubuğu + &Kişiler Yan Çubuğu &Insert - &Ekleyin + &Ekle @@ -12360,7 +12230,7 @@ Do you want to save message to draft box? Open File... - Dosya Açın... + Dosya Aç... @@ -12371,17 +12241,17 @@ Do you want to save message to draft box? Save as... - Farklı kaydedin... + Farklı kaydet... Print Document - Belgeyi Yazdırın + Belgeyi Yazdır Export PDF - PDF Olarak Verin + PDF Olarak Dışa Aktar @@ -12408,22 +12278,22 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - Merhaba,<br>RetroShare üzerinde sizinle arkadaş olmak istiyorum.<br> + Merhaba,<br>RetroShare üzerinde sizinle arkadaş olmak istiyorum.<br> You have a friend invite - + Bir arkadaşlık isteğiniz var Respond now: - + Şimdi yanıtlayın: Close - Kapatın + Kapat @@ -12453,7 +12323,7 @@ Do you want to save message ? Ordered list (decimal) - Numaralı liste (ondalık) + Sıralı liste (ondalık) @@ -12489,7 +12359,7 @@ Do you want to save message ? [Missing] - [Missing] + [Eksik] @@ -12499,7 +12369,7 @@ Do you want to save message ? Node name & id: - Düğüm adı ve kimliği: + Düğüm adı ve kodu: @@ -12512,7 +12382,7 @@ Do you want to save message ? Contacts - Rehber + Kişiler @@ -12522,7 +12392,7 @@ Do you want to save message ? Accept encrypted distant messages from - Şuradaki şifrelenmiş uzak iletileri onaylayın + Şuradaki şifrelenmiş uzak iletileri onayla @@ -12552,17 +12422,17 @@ Do you want to save message ? Add - Ekleyin + Ekle Edit - Düzenleyin + Düzenle Delete - Silin + Sil @@ -12577,16 +12447,12 @@ Do you want to save message ? A new window - Yeni bir pencerede + Yeni pencerede Edit Tag - Etiketi Düzenleyin - - - Message - İleti + Etiketi Düzenle @@ -12601,7 +12467,7 @@ Do you want to save message ? Mail - + Posta @@ -12630,7 +12496,7 @@ Do you want to save message ? Download all Recommended Files - Önerilen Tüm Dosyaları İndirin + Önerilen Tüm Dosyaları İndir @@ -12665,7 +12531,7 @@ Do you want to save message ? Send Invite - Çağrı Gönderin + Çağrı Gönder @@ -12685,7 +12551,7 @@ Do you want to save message ? Print - Yazdırın + Yazdır @@ -12695,12 +12561,12 @@ Do you want to save message ? Confirm %1 as friend - %1 kullanıcısını arkadaş olarak onaylayın + %1 kullanıcısını arkadaş olarak onayla Add %1 as friend - %1 kullanıcısını arkadaş olarak ekleyin + %1 kullanıcısını arkadaş olarak ekle @@ -12710,33 +12576,33 @@ Do you want to save message ? Download - Indirin + Indir Send invite? - + Çağrı Gönder Do you really want send a invite with your Certificate? - + Sertifikanız ile bir çağrı göndermek istediğinize emin misiniz? Download all - Tümünü indirin + Tümünü indir Print Document - Belgeyi Yazdırın + Belgeyi Yazdır Save as... - Farkli kaydedin... + Farkli kaydet... @@ -12746,17 +12612,17 @@ Do you want to save message ? Load images always for this message - Bu iletideki görseller herzaman yüklensin + Bu iletideki görseller her zaman yüklensin Hide the attachment pane - Ekle panosu gizlensin + Dosya ekleme panosu gizlensin Show the attachment pane - Ekler panosu görüntülensin + Dosya ekleri panosu görüntülensin @@ -12774,53 +12640,53 @@ Do you want to save message ? Reply to selected message - Seçilmiş iletiyi yanıtlayın + Seçilmiş iletiyi yanıtla Reply - Yanıtlayın + Yanıtla Reply all to selected message - Seçilmiş iletinin tüm alıcılarını yanıtlayın + Seçilmiş iletinin tüm alıcılarını yanıtla Reply all - Tümünü yanıtlayın + Tümünü yanıtla Forward selected message - Seçilmiş iletiyi iletin + Seçilmiş iletiyi ilet Forward - İletin + İlet Remove selected message - Seçilmiş iletiyi silin + Seçilmiş iletiyi sil Delete - Silin + Sil Print selected message - Seçilmiş iletiyi yazdırın + Seçilmiş iletiyi yazdır Print - Yazdırın + Yazdır @@ -12863,7 +12729,7 @@ Do you want to save message ? Set Text Under Icon - Simge Altındaki Metni Yazın + Simge Altındaki Metni Ayarla @@ -12873,12 +12739,12 @@ Do you want to save message ? Save &As File - Dosyayı &Farklı Kaydedin + Dosyayı &Farklı Kaydet &Print... - &Yazdırın... + &Yazdır... @@ -12888,7 +12754,7 @@ Do you want to save message ? &Quit - Çı&kış + Çı&k @@ -12907,52 +12773,52 @@ Do you want to save message ? Reply to selected message - Seçilmiş iletiyi yanıtlayın + Seçilmiş iletiyi yanıtla Reply - Yanıtlayın + Yanıtla Reply all to selected message - Seçilmiş iletinin tüm alıcılarını yanıtlayın + Seçilmiş iletinin tüm alıcılarını yanıtla Reply all - Tümünü yanıtlayın + Tümünü yanıtla Forward selected message - Seçilmiş iletiyi iletin + Seçilmiş iletiyi ilet Foward - İletin + İlet Remove selected message - Seçilmiş iletiyi silin + Seçilmiş iletiyi sil Delete - Silin + Sil Print selected message - Seçilmiş iletiyi yazdırın + Seçilmiş iletiyi yazdır Print - Yazdırın + Yazdır @@ -13022,7 +12888,7 @@ Do you want to save message ? Print... - Yazdırın... + Yazdır... @@ -13038,43 +12904,43 @@ Do you want to save message ? Buttons Text Beside Icon - Düğme Simgelerinin Yanında Metin + Düğme Simgelerinin Yanındaki Metin Buttons with Text - Düğme Üzerinde Metin + Düğme Üzerindeki Metin Buttons Text Under Icon - Simgenin Altında Düğme Metni + Simgenin Altındaki Düğme Metni Set Text Under Icon - Simge Altındaki Metni Yazın + Simge Altındaki Metni Ayarlayın Save As... - Farklı Kaydedin... + Farklı Kaydet... Reply to Message - İletiyi Yanıtlayın + İletiyi Yanıtla Reply to All - Tümünü yanıtlayın + Tümünü yanıtla Forward Message - İletiyi İletin + İletiyi İlet @@ -13104,7 +12970,7 @@ Do you want to save message ? Click to sort by attachments - Eklere göre sıralamak için tıklayın + Dosya eklerine göre sıralamak için tıklayın @@ -13140,7 +13006,7 @@ Do you want to save message ? Forward selected Message - Seçilmiş iletiyi iletin + Seçilmiş iletiyi ilet @@ -13170,17 +13036,17 @@ Do you want to save message ? Attachments - Ekler + Dosya Ekleri Search Attachments - Ek Arama + Dosya Eki Arama <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;İletiler</h1> <p>RetroShare kendi iç posta sistemine sahiptir. Bağlantılı arkadaşlar düğümleri ile e-posta alışverişi yapılabilir.</p> <p>Genel yöneltme sistemini kullanarak diğer kişilerin kimliklerine de ileti gönderilebilir. Bu iletiler herzaman şifrelenip imzalanır ve hedefe ulaşmadan önce ara düğümlerden geçirilir. </p> <p>Onay alındısı gelene kadar uzak iletiler Giden kutusunda kalır.</p> <p>Genel olarak iletiler arkadaşlarınızla dosya bağlantılarını paylaşmak, ağınızı güçlendirmek için arkadaş düğümlerini başka arkadaş düğümlerine önermek ya da bir kanal sahibine geri bildirim göndermek için kullanılabilir.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;İletiler</h1> <p>RetroShare kendi iç posta sistemine sahiptir. Bağlantılı arkadaş düğümleri ile e-posta alışverişi yapılabilir.</p> <p>Genel yöneltme sistemini kullanarak diğer kişilerin kimliklerine de ileti gönderilebilir. Bu iletiler her zaman şifrelenip imzalanır ve hedefe ulaşmadan önce ara düğümlerden geçirilir. </p> <p>Onay alındısı gelene kadar uzak iletiler Giden kutusunda kalır.</p> <p>Genel olarak iletiler arkadaşlarınızla dosya bağlantılarını paylaşmak, ağınızı güçlendirmek için arkadaş düğümlerini başka arkadaş düğümlerine önermek ya da bir kanal sahibine geri bildirim göndermek için kullanılabilir.</p> @@ -13205,47 +13071,47 @@ Do you want to save message ? Mark as read - Okunmuş olarak işaretleyin + Okunmuş olarak işaretle Mark as unread - Okunmamış olarak işaretleyin + Okunmamış olarak işaretle Add Star - Yıldız Ekleyin + Yıldız Ekle Edit - Düzenleyin + Düzenle Edit as new - Yeni olarak düzenleyin + Yeni olarak düzenle Remove Messages - İletileri Silin + İletileri Sil Remove Message - Silin + Sil Undelete - Çöpten çıkarın + Çöpten çıkart Empty trash - Çöpü boşaltın + Çöpü boşalt @@ -13316,7 +13182,7 @@ Do you want to save message ? Mail - + Posta @@ -13324,17 +13190,17 @@ Do you want to save message ? RetroShare Messenger - RetroShare Anlık Sohbet + RetroShare Anlık İleti Add a Friend - Arkadaş Ekleyin + Arkadaş Ekle Share files for your friends - Dosyaları arkadaşlarınızla paylaşın + Arkadaşlarınızla dosya paylaşın @@ -13342,12 +13208,12 @@ Do you want to save message ? Paste as plain text - Düz metin olarak yapıştırın + Düz metin olarak yapıştır Spoiler - Bozucu + Spoiler @@ -13357,12 +13223,12 @@ Do you want to save message ? Paste RetroShare Link - RetroShare Bağlantısını Yapıştırın + RetroShare Bağlantısını Yapıştır Paste my certificate link - Sertifika adresinizi yapıştırın + Sertifika adresimi yapıştır @@ -13370,48 +13236,48 @@ Do you want to save message ? Send Invite - Çağrı Gönderin + Çağrı Gönder Reply to Message - İletiyi Yanıtlayın + İletiyi Yanıtla Reply Message - İletiyi Yanıtlayın + İletiyi Yanıtla Delete Message - İletiyi Silin + İletiyi Sil Play Media - Ortamı Oynatın + Ortamı Oynat Expand - Genişletin + Genişlet Remove Item - Ögeyi Silin + Ögeyi Sil from - başlangıç + kimden Reply to invite - + Çağrıyı Yanıtla @@ -13436,17 +13302,17 @@ Do you want to save message ? Hide - Gizleyin + Gizle Send invite? - + Çağrı gönderilsin mi? Do you really want send a invite with your Certificate? - + Sertifikanız ile bir çağrı göndermek istediğinize emin misiniz? @@ -13459,7 +13325,7 @@ Do you want to save message ? Network Status Unknown - Bilinmeyen Ağ Durumu + Ağ Durumu Bilinmiyor @@ -13519,46 +13385,30 @@ Do you want to save message ? Name Ad - - Did I authenticated peer - Eşi onaylamış mıyım - - - Did I sign his PGP key - Bu PGP anahtarını imzalamış mıyım - - - Cert Id - Sertifika Kimliği - - - Last used - Son kullanılma - Clear - Temizleyin + Temizle Set Tabs Right - Sekmeleri Sağa Yaslayın + Sekmeleri Sağa Taşı Set Tabs North - Sekmeleri Yukarı Yaslayın + Sekmeleri Yukarı Taşı Set Tabs South - Sekmeleri Aşağı Yaslayın + Sekmeleri Aşağı Taşı Set Tabs Left - Sekmeleri Sola Yaslayın + Sekmeleri Sola Taşı @@ -13573,46 +13423,46 @@ Do you want to save message ? Add Friend - Arkadaş Ekleyin + Arkadaş Ekle Copy My Key to Clipboard - Anahtarınızı Panoya Kopyalayın + Anahtarımı Panoya Kopyala Export My Key - Anahtarımı Ver + Anahtarımı Dışa Aktar Create New Profile - Yeni Profil Oluşturun + Yeni Profil Oluştur Create a new Profile - Yeni profil oluşturun + Yeni profil oluştur Peer ID - Eş Kimliği + Eş Kodu Remove unused keys... - Kullanılmayan anahtarları silin... + Kullanılmayan anahtarları sil... Clean keyring - Anahtarlığı temizleyin + Anahtarlığı temizle - 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. @@ -13656,52 +13506,6 @@ Güvenlik için anahtarlığınız dosyaya yedeklendi Cannot create backup file. Check for permissions in pgp directory, disk space, etc. Yedek dosyası oluşturulamadı. PGP klasörünün izinlerini, boş disk alanını vb denetleyin. - - Personal signature - Kişisel imza - - - PGP key signed by you - İmzaladığınız PGP anahtarı - - - Marginally trusted peer - Çok az güvenilir eş - - - Fully trusted peer - Tamamen güvenilir eş - - - Untrusted peer - Güvenilmez eş - - - Last hour - Son 1 saat - - - Today - Bügün - - - Never - Hiç - - - %1 days ago - %1 gün önce - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - sizi doğruladı. -Bağlanabilmek için sağ tıklayın ve 'Arkadaş Olun' seçeneğini seçin. - - - yourself - kendiniz - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13710,17 +13514,13 @@ Bağlanabilmek için sağ tıklayın ve 'Arkadaş Olun' seçeneğini s Export/create a new node - Yeni bir düğüm verin/oluşturun + Yeni bir düğüm dışa aktar/oluştur Trusted keys only Yalnız güvenilen anahtarlar - - Trust level - Güvenilirlik düzeyi - Search name @@ -13729,12 +13529,12 @@ Bağlanabilmek için sağ tıklayın ve 'Arkadaş Olun' seçeneğini s Search peer ID - Eş Kimliği Arama + Eş Kodu Arama Profile details... - + Profil ayrıntıları... @@ -13759,7 +13559,7 @@ Bildirilen hata: Redraw - Yeniden Çizin + Yeniden Çiz @@ -13774,7 +13574,7 @@ Bildirilen hata: Freeze - Dondurun + Dondur @@ -13810,7 +13610,7 @@ Bildirilen hata: Log entries - + Günlük kayıtları @@ -13840,12 +13640,12 @@ Bildirilen hata: <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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;Haber Akışı</h1> <p>Haber Akışı ağınızdaki son gelişmeleri aldığınız tarihe göre sıralayarak görüntüler. Bu özellik arkadaşlarınızın yaptığı işlemlerin bir özetini verir. Hangi işlemlerin görüntüleneceğini seçmek için <b>Ayarlar</b> üzerine tıklayabilirsiniz. </p> <p>Seçenekler şunlardır: <ul> <li>Bağlanma girişimleri (yeni kişiler ile arkadaş olmak ve size ulaşmaya çalışanları görmek için)</li> <li>Kanal ve Forum iletileri</li> <li>Abone olabileceğiniz yeni kanal ve forumlar</li> <li>Arkadaşlarınızdan gelen özel iletiler</li> </ul> </p> Log - + Haber @@ -13884,7 +13684,7 @@ Bildirilen hata: Chat Room - + Sohbet Odası @@ -13906,7 +13706,7 @@ Bildirilen hata: Toasters - Tokuşturanlar + Bildirimler @@ -13921,27 +13721,27 @@ Bildirilen hata: Friend Connected - Arkadaş Bağlandı + Arkadaş Bağlandı Circles - Çevreler + Çevreler Links - + Bağlantılar Mails - + Postalar Chats - + Sohbetler @@ -13966,32 +13766,32 @@ Bildirilen hata: Chat rooms - + Sohbet odaları Chat Rooms - + Sohbet Odaları Count occurrences of my current identity - + Geçerli kimliğimi içerenler sayılsın Count occurrences of any of the following texts (separate by newlines): - + Şu metinlerden herhangi birini içerenler sayılsın (her metni ayrı bir satıra yazın): Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Denetlendi, sayının arttırılması için kimlik ve yukarıdaki metin aynı olmalıdır. Case sensitive - + Büyük küçük harfe duyarlı @@ -14031,7 +13831,7 @@ Bildirilen hata: <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 ağınızda olup bitenleri bildirecek. İsteğinize göre çeşitli bildirimleri bu sayfadan etkinleştirip devre dışı bırakabilirsiniz</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Bildirim</h1> <p>RetroShare ağınızda olup bitenleri bildirecek. İsteğinize göre çeşitli bildirimleri bu sayfadan etkinleştirip devre dışı bırakabilirsiniz</p> @@ -14061,12 +13861,12 @@ Bildirilen hata: Disable All Toasters - Tüm Tokuşturanları Devre Dışı Bırak + Tüm Bildirimleri Devre Dışı Bırak Disable All Toaster temporarily - Tüm Tokuşturanları geçici olarak devre dışı bırakın + Tüm Bildirimleri geçici olarak devre dışı bırak @@ -14083,31 +13883,23 @@ Bildirilen hata: Count all unread messages Tüm okunmamış iletiler sayılsın - - Count occurences of any of the following texts (separate by newlines): - Şu metni içerenlerin tümü sayılsın (her metni yeni bir satıra yazın): - - - Count occurences of my current identity - Geçerli kimliğimi içerenler sayılsın - NotifyQt Passphrase required - + Parola zorunludur You need to sign your node's certificate. - + Düğümünüzün sertifikasını imzalamalısınız. You need to sign your forum/chatrooms identity. - + Forum ve sohbet odası kimliğinizi imzalamalısınız. @@ -14117,7 +13909,7 @@ Bildirilen hata: Please enter your Retroshare passphrase - + Lütfen RetroShare parolanızı yazın @@ -14162,7 +13954,7 @@ Bildirilen hata: Unknown title - Bilinmeyen başlık + Başlık bilinmiyor @@ -14173,7 +13965,7 @@ Bildirilen hata: 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). - Sohbet odalarının düzgün çalışması için bilgisayarınızın saatinin doğru olması gerekir. Lütfen sorunun bu olup olmadığını denetleyin (arkadaşlarınızla bir kaç dakikalık saat farkı olabileceği algılandı). + Sohbet odalarının düzgün çalışması için bilgisayarınızın saatinin doğru olması gerekir. Lütfen sorunun bu olup olmadığını denetleyin (arkadaşlarınızla bir kaç dakikalık saat farkınız olabileceği algılandı). @@ -14208,7 +14000,7 @@ Bildirilen hata: - 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 @@ -14220,13 +14012,13 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + <p>Uyarı: Bu Çalışma kipi tünelleme hizmetini devredışı bırakır. Bu durumda uzak sohbeti kullanabilir, kimliğinizi gizlemeden dosya indirebilirsiniz ayrıca posta hizmeti yavaşlayacaktır.</p><p>Uygulama yeniden başlatılınca bu ayar kaydedilecektir, lütfen değiştirdiğinizi unutmayın!</p> Turtle routing disabled! - + Turtle yöneltici devre dışı! @@ -14239,12 +14031,12 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura Profile info - + Profil bilgileri Name : - Ad : + Ad : @@ -14254,7 +14046,7 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura <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>PGP anahtarının parmak izi -unutulmaması umulur- PGP anahtarını belirler. Doğru anahtarı kullandığınızdan emin olmak için parmak izlerini karşılaştırın.</p></body></html> + <html><head/><body><p>PGP anahtarının parmak izi -unutulmaması gerekir- PGP anahtarını belirler. Doğru anahtarı kullandığınızdan emin olmak için parmak izlerini karşılaştırın.</p></body></html> @@ -14274,12 +14066,12 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura Unknown - Bilinmeyen + Bilinmiyor No trust - Güvenilmeyen + Güvenilmez @@ -14299,7 +14091,7 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura This profile has signed your own profile key - + Bu profil kendi profil anahtarınız ile imzalanmış @@ -14316,7 +14108,7 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 align="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"> @@ -14327,17 +14119,17 @@ p, li { white-space: pre-wrap; } Sign this key - + Bu anahtarı imzala PGP key - + PGP anahtarı These options apply to all nodes of the profile: - + Bu seçenekler profildeki tüm düğümlere uygulanır: @@ -14347,32 +14139,32 @@ p, li { white-space: pre-wrap; } Sign PGP key - PGP anahtarını imzalayın + 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> - <html><head/><body><p>Bu anahtar tarafından doğrulanmış bağlantıları reddetmek için buraya tıklayın.</p></body></html> + <html><head/><body><p>Bu anahtar ile kimliği doğrulanmış bağlantıları reddetmek için buraya tıklayın.</p></body></html> Deny connections - Bağlantıları reddedin + Bağlantıları reddet <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>Düğümünüzün bu PGP anahtarı tarafından doğrulanan RetroShare düğümlerine bağlanmasını onaylıyorsanız buraya tıklayın. Bu işlem birisiyle RetroShare sertifikanızı değiş tokuş ettiğinizde otomatik olarak yapılır. Arkadaş edinirken sertifikaları değiş tokuş etmek, verilmiş bir anahtardan gelen bağlantıları onaylamaya göre daha iyidir. Çünkü sertifikada işe yarayan ek bağlantı bilgileri bulunur (IP, DNS, SSL ids gibi).</p></body></html> + <html><head/><body><p>Düğümünüzün bu PGP anahtarı tarafından doğrulanan RetroShare düğümlerine bağlanmasını onaylıyorsanız buraya tıklayın. Bu işlem birisiyle RetroShare sertifikanızı değiş tokuş ettiğinizde otomatik olarak yapılır. Arkadaş edinirken sertifikaları değiş tokuş etmek, verilmiş bir anahtardan gelen bağlantıları onaylamaya göre daha iyidir. Çünkü sertifikada işe yarayan ek bağlantı bilgileri bulunur (IP, DNS, SSL kodlar gibi).</p></body></html> Accept connections - Bağlantıları onaylayın + Bağlantıları onayla Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + Aşağıda düğümün ASCII biçimindeki PGP anahtarını görebilirsiniz. Bu bilgi aynı profildeki tüm düğümleri belirler. Arkadaş olmak için değiş tokuş edeceğiniz bir "RetroShare Sertifikası" her düğüm için "Ayrıntılar" bölümünde bulunabilir. @@ -14412,7 +14204,7 @@ p, li { white-space: pre-wrap; } <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. Applies to all locations of the same node.</p></body></html> - <html><head/><body><p>Bu seçeneği kullanan eşlerin bağlantı adresleri beyaz listede değilse bağlanamazlar. Böylece trafik yönlendirme saldırılarından korunursunuz. Bu seçenek kullanıldığında, reddedilen eşler, Haber Kaynağı &quot;güvenlik akışı ögeleri&quot; bölümünde bildirilir. O bölümden IP adreslerini kara ya da beyaz listeye ekleyebilirsiniz. Aynı düğümdeki tüm konumlara uygulanır.</p></body></html> + <html><head/><body><p>Bu seçeneği kullanan eşlerin bağlantı adresleri beyaz listede değilse bağlanamazlar. Böylece trafik yönlendirme saldırılarından korunulur. Bu seçenek kullanıldığında, reddedilen eşler, Haber Kaynağı &quot;güvenlik akışı ögeleri&quot; bölümünde bildirilir. O bölümden IP adreslerini kara ya da beyaz listeye ekleyebilirsiniz. Aynı düğümdeki tüm konumlara uygulanır.</p></body></html> @@ -14447,7 +14239,7 @@ p, li { white-space: pre-wrap; } Error : cannot get peer details. - Hata: eş ayrıntıları alınamıyor. + Hata: eş ayrıntıları alınamadı. @@ -14460,13 +14252,15 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + +Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmiş. Warning: In your File-Transfer option, you select allow direct download to No. - + +Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. @@ -14486,12 +14280,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Your trust in this peer is marginal. - Bu eşe çok az güveniyorsunuz. + Bu eşe güveniniz çok az. Your trust in this peer is none. - Bu eşe hiç güvenmiyorsunuz. + Bu eşe güveniniz hiç yok. @@ -14501,7 +14295,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. <p>This PGP key (ID= - <p>Bu PGP Anahtarı (Kimlik= + <p>Bu PGP Anahtarı (Kod= @@ -14531,7 +14325,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Retroshare profile - + RetroShare profili @@ -14567,18 +14361,18 @@ Warning: In your File-Transfer option, you select allow direct download to No. Start Chat - Sohbet Başlatın + Sohbet Başlat Expand - Genişletin + Genişlet Remove Item - Ögeyi Silin + Ögeyi Sil @@ -14588,7 +14382,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - Eş Kimliği: + Eş Kodu: @@ -14618,12 +14412,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + Write Message - İleti Yazın + İleti Yaz @@ -14648,7 +14442,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14671,12 +14465,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Hide - Gizleyin + Gizle Send Message - İleti Gönderin + İleti Gönder @@ -14720,17 +14514,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat with this person - Bu kişiyle sohbet edin + Bu kişiyle sohbet et Chat with this person as... - Bu kişiyle şu kimlikle sohbet edin... + Bu kişiyle şu kimlikle sohbet et... Send message to this person - Bu kişiye ileti gönderin + Bu kişiye ileti gönder @@ -14763,63 +14557,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. Reputation - Değerlendirme + Değerlendirme <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + <html><head/><body><p>Ayarlanmadığında, kişi listenizdeki herkes olumlu olarak değerlendirilir. Böylece kullanılan düğümlerin değerlendirmesi otomatik olarak yükseltilir. </p></body></html> automatically give "Positive" opinion to my contacts - + kişilerim otomatik olarak "Olumlu" değerlendirilsin Difference in votes (+/-) to rate an ID negatively: - + Bir kimliğin olumsuz olarak değerlendirilmesi için oylar arasındaki fark (+/-): <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Bir kimlik olumlu oydan daha çok sayıda olumsuz oy aldığında, değerlendirme &quot;Kararsız&quot; yerine &quot;Olumsuz (arkadaşlarınıza göre)&quot; olarak değiştirilir. Varsayılan olarak bir oy fark yeterlidir ancak daha yüksek değerler seçerek bu durumun oluşmasını zorlaştırabilirsiniz.</p></body></html> <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>Bir kimlik olumsuz oydan daha çok sayıda olumlu oy aldığında, değerlendirme &quot;Kararsız&quot; yerine &quot;Olumlu (arkadaşlarınıza göre)&quot; olarak değiştirilir. Varsayılan olarak bir oy fark yeterlidir ancak daha yüksek değerler seçerek bu durumun oluşmasını zorlaştırabilirsiniz.</p></body></html> Difference in votes (+/-) to rate an ID positively: - + Bir kimliğin olumlu olarak değerlendirilmesi için oylar arasındaki fark (+/-): Delete banned identities after (0 means indefinitely): - + Engellenmiş kimlikler şu süre sonunda silinsin (0: asla): Reset reputation of banned identities after (0 means never): - + Engellenmiş kimliklerin değerlendirmesi şu süre sonunda sıfırlansın (0: asla): <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + <html><head/><body><p>Engellenmiş kimlikler damgalanmadığından etkinliklerini kaybederler. Belirli bir sürenin sonunda otomatik olarak silinirler.</p></body></html> days - + gün <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + <html><head/><body><p>Forum ya da kanal gibi ortamlarda kullanıldıklarından engellenip silinmiş kimliklerin geri gelmesini önlemek için engellenmiş kimlikler bir süre için bir listede tutulur. Bu sürenin sonunda engelleme listesinden &quot;temizlenerek&quot; forum, sohbet odası gibi yerlerde kullanılıyorlarsa yeniden indilrilirler.</p></body></html> @@ -14885,12 +14679,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add Comment - Yorum Ekleyin + Yorum Ekle Write a comment... - Yorum yazın... + Yorum yaz... @@ -14910,7 +14704,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14923,7 +14717,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14936,7 +14730,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14955,22 +14749,22 @@ p, li { white-space: pre-wrap; } Create Album - Albüm Oluşturun + Albüm Ekle View Album - Albüme Bakın + Albümü Görüntüle Subscribe To Album - Albüme Abone Olun + Albüme Abone Ol Slide Show - Slayt Gösterisi + Saydam Sunumu @@ -14990,7 +14784,7 @@ p, li { white-space: pre-wrap; } View Photo - Fotoğrafa Bakın + Fotoğrafı Görüntüle @@ -15020,7 +14814,7 @@ lütfen bir albüm seçin! Show/Hide Details - Ayrıntıları Görüntüleyin/Gizleyin + Ayrıntıları Görüntüle/Gizle @@ -15031,7 +14825,7 @@ lütfen bir albüm seçin! Stop - Durdurun + Durdur @@ -15041,22 +14835,22 @@ lütfen bir albüm seçin! Close - Kapatın + Kapat Start - Başlatın + Başlat Start Slide Show - Slayt Gösterisini Başlatın + Saydam Sunumunu Başlat Stop Slide Show - Slayt Gösterisini Durdurun + Saydam Sunumunu Durdur @@ -15064,7 +14858,7 @@ lütfen bir albüm seçin! Remove - Kaldırın + Kaldır @@ -15084,7 +14878,7 @@ lütfen bir albüm seçin! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -15095,32 +14889,32 @@ p, li { white-space: pre-wrap; } Enable this plugin (restart required) - Bu uygulama ekini etkinleştirin (yeniden başlatma gerekir) + Bu uygulama ekini etkinleştirir (yeniden başlatma gerekir) Enable - Etkinleştirin + Etkinleştir Disable this plugin (restart required) - Bu eklentiyi devre dışı bırakın (yeniden başlatma gerekir) + Bu eklentiyi devre dışı bırakır (yeniden başlatma gerekir) Disable - Devre Dışı Bırakın + Devre Dışı Bırak Launch configuration panel, if provided by the plugin - Varsa uygulama ayar panosunu açın + Varsa uygulama ekinin yapılandırma panosunu açar Configure - Ayarlar + Yapılandırma @@ -15158,44 +14952,28 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - + Hata: '%1' örneği bir gereç oluşturamadı Error: failed to remove file %1 (uninstalling plugin '%2') - + Hata: %1 dosyası silinemedi ('%2' eklenti kaldırılırken) Error (uninstall): no plugin with name '%1' found - + Hata (kaldırma): '%1' adında bir eklenti bulunamadı Error (installation): plugin file %1 doesn't exist - - - - Error: instance '%1'can't create a widget - Hata: '%1' kopyası bir araç oluşturamadı + Hata (kurulum): '%1' adında bir eklenti bulunamadı Error: no plugin with name '%1' found Hata: '%1' adında bir uygulama eki bulunamadı - - Error(uninstall): no plugin with name '%1' found - Hata (kaldırma): '%1' adında bir uygulama eki bulunamadı - - - Error(installation): plugin file %1 doesn't exist - Hata (yükleme): '%1' adında bir uygulama eki bulunamadı - - - Error: failed to remove file %1(uninstalling plugin '%2') - Hata: %1 dosyası silinemedi ('%2' uygulama eki kaldırılırken) - Error: can't copy %1 to %2 @@ -15207,12 +14985,12 @@ p, li { white-space: pre-wrap; } Install New Plugin... - Yeni Uygulama Eki Yükleyin... + Yeni Uygulama Eki Kur... Open Plugin to install - Yüklenecek uygulama ekini açın + Kurulacak uygulama ekini aç @@ -15222,7 +15000,7 @@ p, li { white-space: pre-wrap; } Widget for plugin %1 not found on plugins frame - Uygulama eki çatısında %1 uygulama eki aracı bulunamadı + Uygulama eki çatısında %1 uygulama eki gereci bulunamadı @@ -15230,7 +15008,7 @@ p, li { white-space: pre-wrap; } Authorize all plugins - Tüm uygulama eklerini doğrulayın + Tüm uygulama eklerini doğrula @@ -15240,7 +15018,7 @@ p, li { white-space: pre-wrap; } Plugin disabled. Click the enable button and restart Retroshare - Uygulama eki devre dışı. Etkinleştirin düğmesine tıklayıp RetroShare yazılımını yeniden başlatın + Uygulama eki devre dışı. Etkinleştir düğmesine tıklayıp RetroShare yazılımını yeniden başlatın @@ -15284,12 +15062,12 @@ p, li { white-space: pre-wrap; } Plugins is loaded. - UYgulama ekleri yüklendi. + Uygulama ekleri yüklendi. Unknown status. - Bilinmeyen durum. + Durum bilinmiyor. @@ -15300,12 +15078,12 @@ malicious behavior of crafted plugins. Uygulama eki geliştirirken bu seçeneği işaretleyin. Böylece karma denetimi yapılmaz. Ancak normal zamanlarda karma denetimi sizi -uygulama eklerindeki kötü niyetli davranışlardan korur. +uygulama eklerinde bulunabilecek zararlı yazılımlardan 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> - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Uygulama&nbsp;Ekleri</h1> <p>Uygulama ekleri aşağıdaki listedeki klasörlerden yüklenir.</p> <p>Güvenlik nedeniyle onaylanmış uygulama ekleri temel RetroShare çalıştırılabilir dosyası ya da uygulama eki kitaplıkları değişene kadar otomatik olarak yüklenir. Bu durumda kullanıcı uygulama eklerini yeniden onaylamalıdır. Bir uygulama ekini el ile etkinleştirmek için "Etkinleştirin" düğmesine tıklayıp RetroShare yazılımını yeniden başlatın.</p><p>Kendi uygulama eklerinizi geliştirmek isterseniz, geliştirici ekibiyle görüşebilirsiniz. Size seve seve yardımcı olurlar!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Uygulama&nbsp;Ekleri</h1> <p>Uygulama ekleri aşağıdaki listedeki klasörlerden yüklenir.</p> <p>Güvenlik nedeniyle onaylanmış uygulama ekleri temel RetroShare çalıştırılabilir dosyası ya da uygulama eki kitaplıkları değişene kadar otomatik olarak yüklenir. Bu durumda kullanıcı uygulama eklerini yeniden onaylamalıdır. Bir uygulama ekini el ile etkinleştirmek için "Etkinleştir" düğmesine tıklayıp RetroShare yazılımını yeniden başlatın.</p><p>Kendi uygulama eklerinizi geliştirmek isterseniz, geliştirici ekibiyle görüşebilirsiniz. Size seve seve yardımcı olurlar!</p> @@ -15319,7 +15097,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Popularity - Beğenirlik + Beğenilme @@ -15327,17 +15105,17 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Clear offline messages - Çevrimdışı iletileri temizleyin + Çevrimdışı iletileri temizle Hide Avatar - Avatarı Gizleyin + Avatarı Gizle Show Avatar - Avatarı Görüntüleyin + Avatarı Görüntüle @@ -15356,19 +15134,19 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Dock tab - Sekmeyi Sabitleyin + Sekmeyi Sabitle Undock tab - Sekmeyi Serbest Bırakın + Sekmeyi Serbest Bırak Set Chat Window Color - Sohbet Penceresi Rengini Ayarlayın + Sohbet Penceresi Rengini Ayarla @@ -15379,33 +15157,25 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. PopupDistantChatDialog - - Chat remotely closed. Please close this window. - Sohbet uzaktan kapatıldı. Lütfen bu pencereyi kapatın. - - - The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - Konuştuğunuz kişi güvenli sohbet tünelini silmiş. Bu sohbet penceresini silebilirsiniz. - Remote status unknown. - + Uzak durum bilinmiyor. Can't send message immediately, because there is no tunnel available. - + Tünel olmadığından anlık olarak ileti gönderemezsiniz. The person you are talking to has deleted the secured chat tunnel. - + Konuştuğunuz kişi güvenli sohbet tünelini silmiş. The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Sohbet eşiniz güvenli tüneli kaldırmış, iletileriniz en kısa zamanda gönderilecektir @@ -15417,14 +15187,6 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Kill the tunnel? Tünel kapatılsın mı? - - Can't send message, because there is no tunnel. - Tünel olmadığından ileti gönderilemedi. - - - Can't send message, because the chat partner deleted the secure tunnel. - Sohbet eşi güvenli tüneli sildiği için ileti gönderilemiyor. - PostedCreatePostDialog @@ -15446,12 +15208,12 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Please create or choose a Signing Id first - Lütfen önce bir imza kimliği oluşturun ya da seçin + Lütfen önce bir imzalayan kimliği oluşturun ya da seçin Submit Post - İletiyi Gönderin + İleti Gönder @@ -15461,12 +15223,12 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Submit - Gönderin + Gönder Submit a new Post - Yeni bir ileti gönderin + Yeni bir ileti gönder @@ -15494,12 +15256,12 @@ uygulama eklerindeki kötü niyetli davranışlardan 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Gönderilen</h1> <p>Gönderilen hizmeti İnternet bağlantılarının forum ve kanalllar gibi RetroShare düğümleri üzerinden paylaşılmasını sağlar</p> <p>Bağlantılara abone olan kullanıcılar tarafından yorum yapılabilir. Bir değerlendirme sistemi sayesinde önemli bağlantılar vurgulanabilir.</p> <p>Paylaşılacak bağlantılarla ilgili bir kısıtlama yoktur. Bu nedenle bağlantıları açarken dikkatli olun.</p> <p>Başka şekilde ayarlamadıysanız, gönderilen bağlantılar %1 gün saklanır ve son %2 gündeki iletiler eşitlenir.</p> Create Topic - Başlık Ekleyin + Başlık Ekle @@ -15509,7 +15271,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Subscribed Topics - Abone Olunan Başlıklar + Abone Olunmuş Başlıklar @@ -15524,7 +15286,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Links - + Bağlantılar @@ -15537,7 +15299,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Add Topic Admins - Konu Yöneticisi Ekleyin + Konu Yöneticisi Ekle @@ -15547,22 +15309,22 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Create New Topic - Yeni Konu Ekleyin + Yeni Konu Ekle Edit Topic - Konuyu Düzenleyin + Konuyu Düzenle Update Topic - Konuyu Güncelleyin + Konuyu Güncelle Create - Ekleyin + Ekle @@ -15570,18 +15332,18 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Subscribe to Posted - Gönderilenlere Abone Olun + Gönderilenlere Abone Ol Expand - Genişletin + Genişlet Remove Item - Ögeyi Silin + Ögeyi Sil @@ -15596,12 +15358,12 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. New Posted - Gönderilen Ekleyin + Gönderilen Ekle Hide - Gizleyin + Gizle @@ -15647,7 +15409,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Set as read and remove item - Okunnuş olarak işaretleyin ve ögeyi silin + Okunmuş olarak işaretle ve ögeyi sil @@ -15667,12 +15429,12 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Toggle Message Read Status - İleti Okunma Durumunu Değiştirin + İleti Okundu Durumunu Değiştir Remove Item - Ögeyi Silin + Ögeyi Sil @@ -15735,7 +15497,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Submit a new Post - Yeni bir ileti gönderin + Yeni bir ileti gönder @@ -15750,7 +15512,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Please create or choose a Signing Id before Voting - Lütfen oylamadan önce bir imza kimliği oluşturun ya da seçin + Lütfen oylamadan önce bir imzalayan kimliği oluşturun ya da seçin @@ -15770,10 +15532,6 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Tabs Sekmeler - - Posted - Gönderilme - Open each topic in a new tab @@ -15782,7 +15540,7 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Links - + Bağlantılar @@ -15803,12 +15561,12 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Print - Yazdırın + Yazdır &Print... - &Yazdırın... + &Yazdır... @@ -15818,17 +15576,17 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Zoom In - Yakınlaştırın + Yakınlaştır Zoom Out - Uzaklaştırın + Uzaklaştır &Close - &Kapatın + &Kapat @@ -15837,20 +15595,20 @@ uygulama eklerindeki kötü niyetli davranışlardan korur. Profile Manager - Profil Yöneticisi + Profil Yönetimi <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 friend nodes to accept you automatically.</p></body></html> - + @@ -15871,7 +15629,7 @@ p, li { white-space: pre-wrap; } Export Identity - Kimliği Verin + Kimliği Dışa Aktar @@ -15895,7 +15653,7 @@ and use the import button to load it Dosya şifrelendi Artık kimliğinizi başka bir bilgisayara kopyalayıp -Kimliği Alın düğmesine tıklayarak yükleyebilirsiniz +Kimliği İçe Aktar düğmesine tıklayarak yükleyebilirsiniz @@ -15910,7 +15668,7 @@ Kimliği Alın düğmesine tıklayarak yükleyebilirsiniz Import Identity - Kimliği Alın + Kimliği İçe Aktar @@ -15925,12 +15683,12 @@ Kimliği Alın düğmesine tıklayarak yükleyebilirsiniz New identity imported - Yeni kimlik alındı + Yeni kimlik içe aktarıldı Your identity was imported successfully: - Kimliğiniz alındı: + Kimliğiniz içe aktarıldı: @@ -15942,35 +15700,15 @@ Kimliği Alın düğmesine tıklayarak yükleyebilirsiniz Certificates (*.pqi *.pem) Sertifikalar (*.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;"> -<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"> -<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;">Aşağıdaki listeden başka bir bilgisayarda kullanmak istediğiniz RetroShare düğümü anahtarını seçin ve &quot;Seçilmiş Anahtarı Verin&quot; düğmesine tıklayın.</p> -<p 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;">Başka bir bilgisayarda yeni bir konum oluşturmak için oturum açma penceresinden kimlik yöneticisini seçin. Böylece anahtar dosyasını alarak yeni bir konum oluşturabilirsiniz. </p> -<p 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;">Aynı anahtarı kullanarak bir düğüm oluşturduğunuzda arkadaş düğümleriniz sizi otomatik olarak onaylar.</p></body></html> - Full keys available in your keyring: - Anahtarlığınızda kullanılabilecek tam anahtarlar: + Anahtarlığınızda kullanılabilecek tüm anahtarlar: Export selected key - Seçilmiş anahtarı verin + Seçilmiş anahtarı dışa aktar @@ -15984,17 +15722,17 @@ p, li { white-space: pre-wrap; } Edit status message - Durum iletisini düzenleyin + Durum iletisini düzenle Copy Certificate - Sertifikayı Kopyalayın + Sertifikayı Kopyala Profile Manager - Profil Yöneticisi + Profil Yönetimi @@ -16014,7 +15752,7 @@ p, li { white-space: pre-wrap; } Peer ID: - Eş Kimliği: + Eş Kodu: @@ -16070,7 +15808,7 @@ p, li { white-space: pre-wrap; } Sorry, create certificate failed - Malesef, sertifika oluşturulamadı + Maalesef, sertifika oluşturulamadı @@ -16083,7 +15821,7 @@ p, li { white-space: pre-wrap; } Post From: - Şuradan Gönderilsin: + Şu Hesapla Gönderilsin: @@ -16107,7 +15845,7 @@ p, li { white-space: pre-wrap; } Add to Pulse - Pulse üzerine ekleyin + Pulse üzerine ekle @@ -16117,17 +15855,17 @@ p, li { white-space: pre-wrap; } URL Adder - İnternet adresi ekleyici + Adres Ekleyici Display As - Şu Şekilde Görüntülensin + Şu Şekilde Görüntüle URL - İnternet Adresi + Adres @@ -16137,7 +15875,7 @@ p, li { white-space: pre-wrap; } Post Pulse to Wire - Pulse Wire Üzerine Gönderin + Pulse Wire Üzerine Gönder @@ -16166,7 +15904,7 @@ p, li { white-space: pre-wrap; } Confirmation - Onaylayın + Onaylama @@ -16182,22 +15920,6 @@ and open the Make Friend Wizard. için tıklayın ve Arkadaş Ekleme Yardımcısını açın. - - Add file - Dosya ekleyin - - - Add files - Birden çok dosya ekleyin - - - Do you want to process the link ? - Bağlantıyı işlemek istiyor musunuz? - - - Do you want to process %1 links ? - %1 bağlantıyı işlemek istiyor musunuz? - Warning: Retroshare is about to ask your system to open this file. @@ -16211,22 +15933,22 @@ için tıklayın ve Arkadaş Ekleme Yardımcısını açın. Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16236,7 +15958,7 @@ için tıklayın ve Arkadaş Ekleme Yardımcısını açın. %1 of %2 RetroShare links processed. - RetroShare bağlantılarının %1 / %2 bölümü işlendi. + RetroShare bağlantısının %1 / %2 bölümü işlendi. @@ -16351,7 +16073,7 @@ için tıklayın ve Arkadaş Ekleme Yardımcısını açın. Posted messages not found - Gönderilen iletiler bulunamadı + Gönderilen ileti bulunamadı @@ -16361,22 +16083,22 @@ için tıklayın ve Arkadaş Ekleme Yardımcısını açın. Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + @@ -16396,7 +16118,7 @@ için tıklayın ve Arkadaş Ekleme Yardımcısını açın. Chat room not found - + @@ -16438,12 +16160,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Deny friend - Arkadaşı reddedin + Arkadaşı reddet Make friend - Arkadaş olun + Arkadaş ol @@ -16458,12 +16180,12 @@ 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. - Bu RetroShare sürümü OpenPGP-SDK kullanır. Bu nedenle sistem paylaşımlı PGP anahtarlığını kullanamaz, ama çalışan tüm RetroShare kopyaları ile paylaşılan kendi anahtarlığı bulunur.<br><br>Büyük olasılıkla yazılımın yeni sürümüne henüz geçtiğiniz için, varolan RetroShare hesaplarında PGP anahtarlarının olduğu anılmasına rağmen, böyle bir anahtarlığınız yok gibi görünüyor. + Bu RetroShare sürümü OpenPGP-SDK kullanır. Bu nedenle sistem paylaşımlı PGP anahtarlığını kullanamaz, ama çalışan tüm RetroShare kopyaları ile paylaşılan kendi anahtarlığı bulunur.<br><br>Büyük olasılıkla uygulamanın yeni sürümüne henüz geçtiğiniz için, var olan RetroShare hesaplarında PGP anahtarlarının olduğu anılmasına rağmen, böyle bir anahtarlığınız yok gibi görünüyor. 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> - Şunlardan birini seçin:<br><ul><li><b>Onaylayın</b> ve gnupg üzerinden varolan anahtarlığı kopyalayın (en güvenli yol), ya da </li><li><b>Kaydetmeden kapatın</b> ve boş bir anahtarlıkla yeni bir başlangıç yapın (RetroShare ile çalışacak yeni PGP anahtarı oluşturmanız, ya da önceden kayıtlı bir PGP anahtar çiftini almanız istenir). </li><li><b>İptal</b> edin ve çıkıp kendiniz bir anahtarlık oluşturun (biraz PGP bilgisi gerektirir)</li></ul> + Şunlardan birini seçin:<br><ul><li><b>Onayla</b> ile gnupg üzerinden var olan anahtarlığı kopyalayın (en güvenli yol) ya da </li><li><b>Kaydetmeden kapat</b> ile boş bir anahtarlıkla yeni bir başlangıç yapın (RetroShare ile çalışacak yeni PGP anahtarı oluşturmanız, ya da önceden kayıtlı bir PGP anahtar çiftini almanız istenir). </li><li><b>İptal</b> ile çıkıp kendiniz bir anahtarlık oluşturun (biraz PGP bilgisi gerektirir)</li></ul> @@ -16489,36 +16211,36 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16539,7 +16261,7 @@ Kilit dosyası: An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - RetroShare tek kopyayı kilitlemeye çalışırken bir sorun çıktı + Çalışan tek RetroShare kopyası kilitlenmeye çalışılırken bir sorun çıktı Kilit dosyası: @@ -16551,20 +16273,12 @@ Kilit dosyası: Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - Tünel bekleniyor... - - - Secured tunnel is working. You can talk! - Güvenli tünel çalışıyor. Konuşabilirsiniz! + @@ -16650,17 +16364,17 @@ Bildirilen hata: Move IP %1 to whitelist - %1 IP adresini beyaz listeye taşıyın + %1 IP adresini beyaz listeye taşı Whitelist entire range %1 - Tüm %1 aralığını beyaz listeye ekleyin + Tüm %1 aralığını beyaz listeye ekle whitelist entire range %1 - tüm %1 aralığını beyaz listeye ekleyin + tüm %1 aralığını beyaz listeye ekle @@ -16722,19 +16436,19 @@ Bildirilen hata: Id: - Kimlik: + Kod: Security: no anonymous IDs -Güvenlik: İsimsiz kimlikler kabul edilmez +Güvenlik: İsimsiz kodlar kullanılamaz Join chat room - + Sohbet odasına katıl @@ -16760,122 +16474,122 @@ Güvenlik: İsimsiz kimlikler kabul edilmez Indefinitely - + Süresiz 5 days - + 5 gün 2 weeks - + 2 hafta 1 month - + 1 ay 2 month - + 2 ay 6 month - + 6 ay 1 year - + 1 yıl days - + gün Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - + Bilinmiyor Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16890,12 +16604,12 @@ Güvenlik: İsimsiz kimlikler kabul edilmez <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16908,13 +16622,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:8pt;">RetroShare Platformuna Hoşgeldiniz!</span></p> +<p 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;">RetroShare Uygulamasına Hoşgeldiniz!</span></p> <p style="-qt-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;">Bu HızlıBaşlangıç Rehberi RetroShare ayarlarını birkaç basit adımda yapmanıza yardımcı olacak.</span></p> +<p 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;">Bu Hızlı Başlangıç Yardımcısı birkaç basit adımda RetroShare ayarlarını yapılandırmanıza yardımcı olur.</span></p> <p style="-qt-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;">Ayrıntılı ayarlar için RetroShare Araç Çubuğundaki Ayarlar seçeneğini kullanabilirsiniz. İstediğiniz zaman Çıkış düğmesine tıklayarak Rehberi kapatabilirsiniz.</span></p> +<p 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;">Ayrıntılı ayarlar için RetroShare Araç Çubuğundaki Ayarlar seçeneğini kullanabilirsiniz. İstediğiniz zaman Çıkış düğmesine tıklayarak Yardımcıyı kapatabilirsiniz.</span></p> <p style="-qt-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;">Bu Rehber size şu konularda yardımcı olacak:</span></p> +<p 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;">Bu Yardımcı size şu konularda yardımcı olacak:</span></p> <p style="-qt-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;"> RetroShare ayarlarını İnternet bağlantınıza uygun şekilde yapmanızda.</span></p> <p style="-qt-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> @@ -16928,7 +16642,7 @@ p, li { white-space: pre-wrap; } Next > - Sonraki > + İleri > @@ -16937,17 +16651,17 @@ p, li { white-space: pre-wrap; } Exit - Çıkış + Çık For best performance, RetroShare needs to know a little about your connection to the internet. - En iyi başarım için, RetroShare yazılımı İnternet bağlantınız hakkında bilgi edinmeye gerek duyuyor. + En iyi başarım için, RetroShare uygulaması İnternet bağlantınız hakkında bilgi edinmeye gerek duyuyor. Choose your download speed limit: - İndirme hız sınırınızı seçin: + İndirme hızı sınırınızı seçin: @@ -16958,7 +16672,7 @@ p, li { white-space: pre-wrap; } Choose your upload speed limit: - Yükleme hız sınırınızı seçin: + Yükleme hızı sınırınızı seçin: @@ -17018,10 +16732,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17051,27 +16765,27 @@ p, li { white-space: pre-wrap; } Add - Ekleyin + Ekle Remove - Kaldırın + Kaldır Automatically share incoming directory (Recommended) - Otomatik olarak gelen klasörü paylaşılsın (Önerilir) + Gelen klasörü otomatik olarak paylaşılsın (Önerilir) RetroShare Page Display Style - RetroShare Sayfa Görüntüleme Stili + RetroShare Sayfa Görüntüleme Biçemi Where do you want to have the buttons for the page? - Sayfa düğmelerinin nerede olmasını istersiniz? + Sayfa düğmelerinin nerede görüntülenmesini istersiniz? @@ -17088,9 +16802,9 @@ 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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -17105,8 +16819,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -17114,7 +16828,7 @@ 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:8pt;">Yalnız bir adım kaldı! Bilgisayarınıza uygun RetroShare ayarlarını neredeyse tamamladınız.</span></p> +<p 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;">Yalnız bir adım kaldı! Bilgisayarınız içinRetroShare yapılandırmasını neredeyse tamamladınız.</span></p> <p style="-qt-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;">Bu ayarlar RetroShare yazılımının nasıl ve ne zaman başlayacağını belirler.</span></p> <p style="-qt-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> @@ -17127,7 +16841,7 @@ p, li { white-space: pre-wrap; } Start Minimized - Küçültülmüş Olarak Başlat + Küçültülmüş Olarak Başlatılsın @@ -17137,7 +16851,7 @@ p, li { white-space: pre-wrap; } Start minimized on system start - RetroShare Windows ile küçülmüş olarak başlatılsın + Windows ile küçültülmüş olarak başlatılsın @@ -17162,7 +16876,7 @@ p, li { white-space: pre-wrap; } Browsable - Taranabilir + Gözatılabilir @@ -17177,7 +16891,7 @@ p, li { white-space: pre-wrap; } If checked, the share is browsable by your friends. - Bu seçenek işaretlendiğinde, paylaşıma arkadaşlarınız tarafından gözatılabilir. + Bu seçenek işaretlendiğinde, arkadaşlarınız paylaşıma gözatabilir. @@ -17229,7 +16943,7 @@ p, li { white-space: pre-wrap; } Load images - Görselleri yükleyin + Görselleri yükle @@ -17282,7 +16996,7 @@ p, li { white-space: pre-wrap; } Peer Id: - Eş Kimliği: + Eş Kodu: @@ -17290,17 +17004,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Ağaç Görünümü Ayarları Show column... - + Görüntülenecek sütun... [no title] - + [başlık yok] @@ -17321,97 +17035,22 @@ p, li { white-space: pre-wrap; } <strong>İndirme:</strong> 0.00 (kB/s) | <strong>Yükleme:</strong> 0.00 (kB/s) - - RelayPage - - Enable Relay Connections - Aktarıcı Bağlantılar Kullanılsın - - - Use Relay Servers - Aktarıcı Sunucuları Kullanılsın - - - Relay options - Aktarıcı Ayarları - - - Number - Numara - - - Bandwidth per link - Bir bağlantının bant genişliği - - - Total Bandwidth - Toplam Bant Genişliği - - - Friends - Arkadaşlar - - - kB/s - kB/s - - - Friends of Friends - Arkadaşların Arkadaşları - - - General - Genel - - - Total: - Toplam: - - - Relay Server Setup - Aktarıcı Sunucu Kurulumu - - - Add Server - Sunucu Ekleyin - - - Server DHT Key - Sunucu DHT Anahtarı - - - Remove Server - Sunucuyu Kaldırın - - - Relay - Aktarıcı - - - <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;Aktarıcılar</h1> <p>Aktarıcı özelliğini etkinleştirdiğinizde, güvenlik duvarı gibi nedenlerle doğrudan bağlanamayan RetroShare kullanıcılarının aktarımlarını sizin RetroShare düğümünüz üzerinden yapımasına yardımcı olursunuz.</p> <p><i>Aktarıcı Bağlantıları Kullanılsın</i> seçeneğini etkinleştirerek bir aktarıcı olarak davranmayı ya da <i>Aktarıcı Sunucular Kullanılsın</i> seçeneğini etkinleştirerek diğer aktarıcı eşlerden yararlanmayı seçebilirsiniz. Birinci seçenek için arkadaşlarınıza, arkadaşlarınızın arkadaşlarına ya da RetroShare ağındaki herhangi birine sağlayacağınız bant genişliğini belirtebilirsiniz.</p> <p>Aktarılan trafik iki aktarılan düğüm tarafından şifrelenmiş olduğundan, aktarıcı olarak çalışan bir RetroShare düğümü hiç bir şekilde aktardığı trafiği göremez.</p> - - RemoteSharedFilesDialog Download... - + Download - İndirin + İndir Recommend in a message to... - - - - Recommend in a message to - Şu kişiye iletiyle önerin + Şu kişiye iletiyle öner... @@ -17424,12 +17063,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + [Tüm arkadaş düğümleri] Only - + Yalnız @@ -17439,7 +17078,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - + Bu düğüm henüz herhangi bir klasör bilgisi göndermemiş. @@ -17467,7 +17106,7 @@ p, li { white-space: pre-wrap; } Unknown - Bilinmeyen + Bilinmiyor @@ -17475,22 +17114,22 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - IP adresini beyaz listeye ekleyin + IP adresini beyaz listeye ekle Remove IP from whitelist - IP adresini beyaz listeden çıkarın + IP adresini beyaz listeden çıkar Add IP to blacklist - IP adresini kara listeye ekleyin + IP adresini kara listeye ekle Remove IP from blacklist - IP adresini kara listeden çıkarın + IP adresini kara listeden çıkar @@ -17509,32 +17148,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Derleme Dosyasını Kaydedin. + File already exists. - Dosya zaten var. + What do you want to do? - Ne yapmak istiyorsunuz? + Overwrite - Üzerine Yazılsın + Merge - Birleştirilsin + Cancel - + @@ -17557,12 +17196,12 @@ p, li { white-space: pre-wrap; } Destination: - + Right click to change download directory - + @@ -17573,7 +17212,7 @@ p, li { white-space: pre-wrap; } Download! - İndirin! + İndir! @@ -17598,7 +17237,7 @@ p, li { white-space: pre-wrap; } 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. Bazı dosya ya da klasör adlarında izin verilmeyen karakterler var. <b>",|,/,\,<,>,*,?</b> karakterleri '_' karakteri ile değiştirilecek. @@ -17625,28 +17264,20 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. <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>Seçilmiş ögeyi derlemeye ekleyin.</p><p>Bir klasör seçilmişse altındaki tüm klasörler de eklenir.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&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>Derlemeye yeni bir klasör ekleyin.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - - + - + - Remove Duplicate - + Çift Kaydı Sil Save - Kaydedin + Kaydet @@ -17663,10 +17294,6 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. File Count Dosya Sayısı - - This is the root directory. - Bu kök klasördür. - Real Size: Waiting child... @@ -17685,17 +17312,17 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. Download files - + Specify... - Belirtin... + Choose directory - Klasör seçin + @@ -17712,7 +17339,7 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. Save Collection File. - Derleme Dosyasını Kaydedin. + Derleme Dosyasını Kaydet. @@ -17737,17 +17364,17 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. Do you want to remove them and all their children, too? - + Seçilmişler ile tüm alt ögelerini de kaldırmak istediğinize emin misiniz? Do you want to remove this file from the list? - + Bu dosyayı listeden çıkarmak istiyor musunuz? New Directory - Klasör Ekleyin + Klasör Ekle @@ -17757,7 +17384,7 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. <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>Derlemenin kaydedileceği dosyayı değiştirin.</p><p>Varolan bir derleme dosyasını seçerseniz eski ve yeni derlemeleri birleştirebilirsiniz.</p></body></html> + <html><head/><body><p>Derlemenin kaydedileceği dosyayı değiştirin.</p><p>Var olan bir derleme dosyasını seçerseniz eski ve yeni derlemeleri birleştirebilirsiniz.</p></body></html> @@ -17786,7 +17413,7 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. Open collection file - Derleme dosyasını açın + Derleme dosyasını aç @@ -17801,7 +17428,7 @@ Sorunlu dosyalar kırmızı renkte görüntülenir. Create collection file - Derleme dosyası oluşturun + Derleme dosyası ekle @@ -17812,30 +17439,6 @@ If you believe it is correct, remove the corresponding line from the file and re Dosyanın doğru olduğunu düşünüyorsanız bu satırı silerek dosyayı RetroShare içinden yeniden açmayı deneyin. - - Save Collection File. - Derleme Dosyasını Kaydedin. - - - What do you want to do? - Ne yapmak istiyorsunuz? - - - Overwrite - Üzerine Yazılsın - - - Merge - Birleştirilsin - - - Cancel - İptal - - - File already exists. - Dosya zaten var. - RsDownloadListModel @@ -17843,128 +17446,119 @@ Dosyanın doğru olduğunu düşünüyorsanız bu satırı silerek dosyayı Retr Name i.e: file name - Ad + Size i.e: file size - Boyut + Completed - Tamamlandı + Speed i.e: Download speed - Hız + Progress / Availability i.e: % downloaded - İlerleme / Kullanılabilirlik + Sources i.e: Sources - Kaynaklar + Status - Durum + Speed / Queue position - Hız / Kuyruk Sırası + Remaining - Kalan + Download time i.e: Estimated Time of Arrival / Time left - + Hash - Karma + Last Time Seen i.e: Last Time Receiced Data - Son Görülme + Path i.e: Where file is saved - Yol + Failed - Başarısız + Okay - Tamam + Waiting - Bekliyor + Downloading - Indiriliyor + Complete - Tamamlanmış + Queued - Sırada + Paused - Duraklatılmış + Checking... - Denetleniyor... + Unknown - - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - Görsel boyutu aktarılmak için çok büyük. -Görsel %1x%2 piksel boyutuna küçültülsün mü? + Bilinmiyor @@ -17991,7 +17585,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? filename - + @@ -18001,7 +17595,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? level - + @@ -18011,37 +17605,33 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? style - + Sets RetroShare's interface style. - RetroShare arayüz stilini ayarlar. + RetroShare arayüz biçemini ayarlar. stylesheet - + Sets RetroShare's interface stylesheets. - RetroShare arayüz stilini ayarlar. + RetroShare arayüz biçemini ayarlar. language - + Sets RetroShare's language. RetroShare arayüz dilini ayarlar. - - RetroShare Usage Information - RetroShare Kullanım Bilgileri - Unable to open log file '%1': %2 @@ -18051,7 +17641,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Invalid operating mode specified: - + @@ -18066,37 +17656,37 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Revision - Revizyon + Değişiklik opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + @@ -18106,7 +17696,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Invalid GUI style specified: - Belirtilen grafik arayüz stili geçersiz: + Belirtilen görsel arayüz biçemi geçersiz: @@ -18120,7 +17710,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Registry Access Error. Maybe you need Administrator right. - Kayıt Defterine Erişim Hatası. Belki Yönetici izinleriyle denemelisiniz. + Kayıt Defterine Erişim Hatası. Yönetici izinleri gerekiyor olabilir. @@ -18141,12 +17731,12 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Start Search - Aramayı Başlatın + Aramayı Başlat Search - Ara + Arama @@ -18161,7 +17751,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Search inside "browsable" files of your friends - Arkadaşlarınızın "göz atılabilir" dosyalarında arayın + Arkadaşlarınızın "gözatılabilir" dosyalarında arayın @@ -18173,7 +17763,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Multi-hop search at distance 6 in the network (always reports available files) Ağdaki çoklu sıçrama arama uzaklığı 6 -(kullanılabilecek dosyaları herzaman bildir) +(kullanılabilecek dosyalar her zaman bildirilsin) @@ -18193,12 +17783,12 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Close all Search Results - Tüm arama sonuçlarını kapatın + Tüm Arama Sonuçlarını Kapat Clear - Temizleyin + Temizle @@ -18213,7 +17803,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Search Id - Kimlik Arama + Kod Arama @@ -18233,7 +17823,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Type - Tip + Tür @@ -18308,12 +17898,12 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Download Selected - Seçilmişleri İndirin + Seçilmişleri İndir Download selected - Seçilmişleri indirin + Seçilmişleri indir @@ -18323,18 +17913,18 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Download - Indirin + Indir Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare Bağlantısını Kopyala Send RetroShare Link - RetroShare Bağlantısını Gönderin + RetroShare Bağlantısını Gönder @@ -18350,28 +17940,28 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Sorry - Malesef + Maalesef This function is not yet implemented. - Bu işlev henüz eklenmemiş. + Bu özellik henüz eklenmemiş. Search again - Yeniden arayın + Yeniden ara Remove - Kaldırın + Kaldır Remove All - Tümünü Kaldırın + Tümünü Kaldır @@ -18387,27 +17977,27 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Open Folder - Klasör Açın + Klasör Aç Create Collection... - Derleme Oluşturun... + Derleme Oluştur... Modify Collection... - Derlemeyi Düzenleyin... + Derlemeyi Düzenle... View Collection... - Derlemeye Bakın... + Derlemeyi Görüntüle... Download from collection file... - Derleme dosyasından indirin... + Derleme dosyasından indir... @@ -18426,12 +18016,12 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Expand - Genişletin + Genişlet Remove Item - Ögeyi Silin + Ögeyi Sil @@ -18441,7 +18031,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Peer ID: - Eş Kimliği: + Eş Kodu: @@ -18463,7 +18053,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Hide - Gizleyin + Gizle @@ -18488,13 +18078,13 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? <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>Arkadaşınız bu IP adresine bağlanmak istiyor. IP adresini yeni değiştirdiyseniz bu uyarıyı dikkate almayın. IP adresini değiştirmediyseniz ara bir eş tarafından bu arkadaşınıza gönderilen IP adresi şüpheli olabilir.</p> + <p>Arkadaşınız bu IP adresine bağlanmak istiyor. IP adresini yeni değiştirdiyseniz bu uyarıyı dikkate almayın. IP adresini değiştirmediyseniz aradaki bir eş tarafından bu arkadaşınıza şüpheli bir IP adresi gönderiliyor olabilir.</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>Bu uyarı sizi trafik iletme saldırılarına karşı korumayı amaçlıyor. Böyle bir durumda, bağlı olduğunuz arkadaş dış IP adresiniz yerine saldırganın IP adresini görür. </p> <p><br/></p> <p>Bununla birlikte, bir nedenle IP adreslerini değiştirdiyseniz (Bazı hizmet sağlayıcılar düzenli olarak IP adreslerini değiştirir), bu uyarı size yalnızca RetroShare farketmeden önce bir arkadaşınıza yeni bir IP adresi ile bağlandığınızı belirtir. Bu durumda bir sorun yoktur.</p> <p><br/></p> <p>Kendi IP adreslerinizi beyaz listeye ekleyerek (örneğin, hizmet sağlayıcınızın IP adresi aralığını) hatalı uyarıları gizleyebilir ya da Ayarlar-&gt;Bildirim-&gt;Haber Akışı bölümünden tamamen devre dışı bırakabilirsiniz.</p></body></html> + <html><head/> <body><p>Bu uyarı sizi trafik iletme saldırılarına karşı korumayı amaçlıyor. Böyle bir durumda, bağlı olduğunuz arkadaşınız dış IP adresiniz yerine saldırganın IP adresini görür. </p> <p><br/></p> <p>Bununla birlikte, bir nedenle IP adreslerini değiştirdiyseniz (Bazı hizmet sağlayıcılar düzenli olarak IP adreslerini değiştirir), bu uyarı size yalnızca RetroShare farketmeden önce bir arkadaşınıza yeni bir IP adresi ile bağlandığınızı belirtir. Bu durumda bir sorun yoktur.</p> <p><br/></p> <p>Kendi IP adreslerinizi beyaz listeye ekleyerek (örneğin, hizmet sağlayıcınızın IP adresi aralığını) hatalı uyarıları gizleyebilir ya da Ayarlar-&gt;Bildirim-&gt;Haber Akışı bölümünden tamamen devre dışı bırakabilirsiniz.</p></body></html> @@ -18507,7 +18097,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Accept Friend Request - Arkadaşlık İsteğini Onaylayın + Arkadaşlık İsteğini Onayla @@ -18517,7 +18107,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Deny friend - Arkadaşlık isteğini reddedin + Arkadaşlık isteğini reddet @@ -18527,18 +18117,18 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Start Chat - Sohbet Başlatın + Sohbet Başlat Expand - Genişletin + Genişlet Remove Item - Ögeyi Kaldırın + Ögeyi Sil @@ -18548,7 +18138,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Peer ID: - Eş Kimliği: + Eş Kodu: @@ -18578,7 +18168,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Write Message - İleti Yazın + İleti Yaz @@ -18627,7 +18217,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Certificate has wrong signature!! This peer is not who he claims to be. - Sertifika imzası yanlış!! Bu eş olduğunu iddia ettiği kişi değil. + Sertifika imzası yanlış!! Bu eş, olduğunu iddia ettiği kişi değil. @@ -18637,12 +18227,12 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Certificate caused an internal error. - Sertifika içeride bir soruna yolaçtı. + Sertifika içeride bir soruna yol açtı. Peer/node not in friendlist (PGP id= - Eş/Düğüm arkadaş listesinde değil (PGP kimliği= + Eş/Düğüm arkadaş listesinde değil (PGP kodu= @@ -18655,17 +18245,13 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Network Configuration - Ağ Ayarları + Ağ Yapılandırması Network Mode Ağ Kipi - - Nat - NAT - Automatic (UPnP) @@ -18710,7 +18296,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? NAT - + @@ -18736,7 +18322,7 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? External ip address finder - Dis IP adres bulucu + Dış IP adres bulucu @@ -18748,15 +18334,11 @@ Görsel %1x%2 piksel boyutuna küçültülsün mü? Known / Previous IPs: Bilinen / Önceki IP Adresleri: - - Show Discovery information in statusbar - Keşif bilgileri durum çubuğunda görüntülensin - 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. Bu seçenek devre dışı bırakıldığında, RetroShare IP adresinizi yalnız birine bağlandığınızda belirleyebilir. Az sayıda arkadaşınız @@ -18802,7 +18384,7 @@ yardımcı olur. Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + @@ -18812,7 +18394,7 @@ yardımcı olur. Hidden - See Config - Gizli - Ayarlara Bakın + Gizli - Yapılandırmaya Bakın @@ -18853,12 +18435,12 @@ yardımcı olur. BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18867,111 +18449,111 @@ yardımcı olur. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - bilinmeyen + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + @@ -18995,7 +18577,7 @@ Ayrıca kapı ayarlarınızı da denetleyin! <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>Bu işlem bilinen adreslerin listesini temizeler. Böylece adres listenizde olabilecek herhangi bir nedenle geçersiz/ilgisiz/süresi geçmiş adreslerin kişi adresi olarak arkadaşlarınıza bildirilmesi engellenir.</p></body></html> + <html><head/><body><p>Bu işlem bilinen adresler listesini temizler. Böylece adres listenizde olabilecek herhangi bir nedenle geçersiz/ilgisiz/süresi geçmiş adreslerin kişi adresi olarak arkadaşlarınıza bildirilmesi engellenir.</p></body></html> @@ -19026,138 +18608,138 @@ Ayrıca kapı ayarlarınızı da denetleyin! WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - Başlatın + Restart - + Stop - Durdurun + BOB status - + Incoming - Gelen + <html><head/><body><p>Setup your hidden address (and port if needed)</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>Bu düğme ilgili vekil sunucuyu kullanarak gizli adresinize bir SSL bağlantısının benzetimini yapar. Gizli düğümünüze erişilemiyor ise bir SSL el sıkışma hatası oluştur. RetroShare bu durumu geçerli bir bağlantı durumu olarak yorumlar. Bu işlem ayrıca etkinleştirilmiş ise Haber Akışında yerel sunucu adresinizle (127.0.0.1) ilgili bazı &quot;güvenlik uyarıları&quot; görüntülenmesine neden olur. Bu durumu sağlıklı bir iletişim işareti olarak yorumlamalısınız.</p></body></html> + <html><head/><body><p>Bu düğme ilgili vekil sunucuyu kullanarak gizli adresinize bir SSL bağlantısı benzetimi yapar. Gizli düğümünüze erişilemiyor ise bir SSL el sıkışma hatası oluştur. RetroShare bu durumu geçerli bir bağlantı durumu olarak yorumlar. Bu işlem ayrıca etkinleştirilmiş ise Haber Akışında yerel sunucu adresinizle (127.0.0.1) ilgili bazı &quot;güvenlik uyarıları&quot; görüntülenmesine neden olur. Bu durumu sağlıklı bir iletişim işareti olarak yorumlamalısınız.</p></body></html> @@ -19171,101 +18753,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - Aktarıcı + Enable Relay Connections - Aktarıcı Bağlantılar Kullanılsın + Use Relay Servers - Aktarıcı Sunucuları Kullanılsın + Relay options - Aktarıcı Ayarları + Number - Numara + Bandwidth per link - Bir bağlantının bant genişliği + Total Bandwidth - Toplam Bant Genişliği + Friends - Arkadaşlar + Friends of Friends - + General - Genel + Total: - Toplam: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - Aktarıcı Sunucu Kurulumu + Add Server - Sunucu Ekleyin + Server DHT Key - Sunucu DHT Anahtarı + Remove Server - Sunucuyu Kaldırın + - <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>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> - + @@ -19280,7 +18862,7 @@ If you have issues connecting over Tor check the Tor logs too. Activate IP filtering - + @@ -19305,7 +18887,7 @@ If you have issues connecting over Tor check the Tor logs too. Origin - Özgün + Kaynak @@ -19328,7 +18910,7 @@ If you have issues connecting over Tor check the Tor logs too. IP whitelist - IP Beyaz Listesi + Beyaz IP Listesi @@ -19348,21 +18930,17 @@ If you have issues connecting over Tor check the Tor logs too. Add to blacklist - Kara listeye ekleyin + Kara listeye ekle Add to whitelist - Beyaz listeye ekleyin + Beyaz listeye ekle Hidden Service Configuration - Gizli Hizmet Ayarları - - - Outgoing Connections - Giden Bağlantılar + Gizli Hizmet Yapılandırması @@ -19395,26 +18973,6 @@ If you have issues connecting over Tor check the Tor logs too. I2P outgoing Okay I2P gidiş tamam - - 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 Vekil Sunucu varsayılan: 127.0.0.1:9050. torrc ayarlarını yapın ve buradan güncelleyin. - -I2P Vekil Sunucu: İstemci tünelini ayarlamak için http://127.0.0.1:7657/i2ptunnelmgr adresine bakın: -Tünel Yardımcısı -> İstemci Tüneli -> SOCKS 4/4a/5 -> bir ad yazın -> 'Giden Vekil Sunucular' bölümünü boş bırakın -> kapı numarasını yazın (unutmayın!) [erişilebilirliği de 127.0.0.1 olarak ayarlamak isteyebilirsiniz] -> 'Otomatik Başlatma' seçeneğini etkinleştirin -> bitti! -Şimdi daha önce I2P vekil sunucusu için seçtiğiniz adres (127.0.0.1 gibi) ve kapı numarasını yazın. - -Artık standart bir düğüm işletiyor olsanız bile Gizli Düğümlere bağlanabilirsiniz, neden Tor ya da I2P yüklemeyesiniz? - - - Incoming Service Connections - Gelen Hizmet Bağlantıları - @@ -19424,7 +18982,7 @@ Artık standart bir düğüm işletiyor olsanız bile Gizli Düğümlere bağlan <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>Gizli adresiniz. <span style=" font-weight:600;">[birşey].onion</span> gibi ya da <span style=" font-weight:600;">[birşey].b32.i2p gibi görünmelidir. </span>Tor ile bir gizli hizmet ayarı yaptıysanız onion adresi otomatik olarak Tor tarafından oluşturulur. Örneğin: <span style=" font-weight:600;">/var/lib/tor/[hizmet adı]/sunucuadı</span>. I2P için: Bir sunucu tüneli ayarlayın ( http://127.0.0.1:7657/i2ptunnelmgr ) ve başlatıldığında tünelin base32 adresini kopyalayın (.b32.i2p ile bitmelidir)</p></body></html> + <html><head/><body><p>Gizli adresiniz. <span style=" font-weight:600;">[birşey].onion</span> gibi ya da <span style=" font-weight:600;">[birşey].b32.i2p gibi görünmelidir. </span>Tor için bir gizli hizmet yapılandırdıysanız onion adresi otomatik olarak Tor tarafından oluşturulur. Örneğin: <span style=" font-weight:600;">/var/lib/tor/[hizmet adı]/sunucuadı</span>. I2P için: Bir sunucu tüneli ayarlayın ( http://127.0.0.1:7657/i2ptunnelmgr ) ve başlatıldığında tünelin base32 adresini kopyalayın (.b32.i2p ile bitmelidir)</p></body></html> @@ -19444,35 +19002,13 @@ Artık standart bir düğüm işletiyor olsanız bile Gizli Düğümlere bağlan Expected Configuration: - Beklenen Ayarlar: + Beklenen Yapılandırma: Please fill in a service address Lütfen bir hizmet adresi yazın - - 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. - Bağlantıları almak için önce bir Tor/I2P Gizli Hizmeti ayarlamalısınız. -Tor için: HOWTO ayrıntılarından torrc konusuna ve belgelere bakın. -I2P için: Sunucu tünelini kurmak için http://127.0.0.1:7657/i2ptunnelmgr adresine bakın: -Tünel Yardımcısı -> Sunucu Tüneli -> Standart -> bir ad yazın -> RetroShare tarafından kullanılan adres ve kapıyı yazın (yukarıdaki yerel adrese bakın) -> 'Otomatik Başlat' seçeneğini işaretleyin -> Tamam - -Bu işlem tamamlandığında, Onion/I2P (Base32) adresini yukarıdaki kutuya yapıştırın. -Tor/I2P ağınızdaki dış adresiniz. -Son olarak Kapıların ayarlar ile eşleştiğinden emin olun. - -Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. - IP Range @@ -19492,24 +19028,24 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Remove - Silin + Sil Added by you - Sizin tarafınızdan eklenmiş + Sizin eklediğiniz <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>Beyaz listeye IP adresleri şu kaynaklardan toplanır: El ile değiş tokuş edilmiş bir sertifika ile gelen IP adresleri, bu bölümden el ile yazılan ya da güvenlik akışı ögelerinden alınan IP adresi aralıkları.</p><p>Retroshare varsayılan olarak (1) IP adresi beyaz listede bulunan eşlerle bağlantıya kara listede bulunsalar bile herzaman izin verir; (2) isteğe bağlı olarak IP adreslerinin beyaz listede bulunması gerekir. Bu davranış her bir eş için RetroShare düğümlerinin &quot;Ayrıntılar&quot; penceresinden değiştirilebilir. </p></body></html> + <html><head/><body><p>Beyaz listeye IP adresleri şu kaynaklardan toplanır: El ile değiş tokuş edilmiş bir sertifika ile gelen IP adresleri, bu bölümden el ile yazılan ya da güvenlik akışı ögelerinden alınan IP adresi aralıkları.</p><p>RetroShare varsayılan olarak (1) IP adresi beyaz listede bulunan eşlerle bağlantıya kara listede bulunsalar bile her zaman izin verir; (2) isteğe bağlı olarak IP adreslerinin beyaz listede bulunması gerekir. Bu davranış her bir eş için RetroShare düğümlerinin &quot;Ayrıntılar&quot; penceresinden değiştirilebilir. </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, Bittorrent DHT özelliğini kullanan arkadaşlarınızdan gelen bağlantı isteklerini yanıtlamanızı sağlayarak bağlanabilirliği büyük ölçüde arttırır. DHT üzerinde herhangi bir veri saklanmaz. Yalnızca diğer RetroShrare düğümleri ile iletişim kurmak için bir vekil sistem olarak kullanılır.</p><p>Keşif hizmeti, güvendiğiniz kişilerin düğüm adı ve kimliğini bağlı olduğunuz eşlere ileterek yeni arkadaşlar edinmelerine yardımcı olur. Asla otomatik olarak arkadaşlık kurulmaz. İki eşin bağlanabilmesi için birbirlerine karşılıklı olarak güvenmeleri gerekir. </p></body></html> + <html><head/><body><p>DHT, Bittorrent DHT özelliğini kullanan arkadaşlarınızdan gelen bağlantı isteklerini yanıtlamanızı sağlayarak bağlanabilirliği büyük ölçüde arttırır. DHT üzerinde herhangi bir veri saklanmaz. Yalnızca diğer RetroShrare düğümleri ile iletişim kurmak için bir vekil sistem olarak kullanılır.</p><p>Keşif hizmeti, güvendiğiniz kişilerin düğüm adı ve kodunu bağlı olduğunuz eşlere ileterek yeni arkadaşlar edinmelerine yardımcı olur. Asla otomatik olarak arkadaşlık kurulmaz. İki eşin bağlanabilmesi için birbirlerine karşılıklı olarak güvenmeleri gerekir. </p></body></html> @@ -19521,10 +19057,6 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın.<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>Bu liste çeşitli kaynaklardan toplanan bilgiler ile otomatik olarak doldurulur: DHT tarafından bildirilen maskelenmiş eşler, sizin yazdığınız IP aralıkları ve arkadaşlarınız tarafından bildirilen IP aralıkları. Varsayılan ayarlar sizi büyük ölçekli trafik aktarımlarına karşı korur.</p><p>Maskelenmiş IP adreslerinin otomatik olarak öngörülmesi yüzünden arkadaşlarınızın IP adresleri kara listeye eklenebilir. Bu durumda bu IP adreslerini beyaz listeye eklemek için sağ tıklayın.</p></body></html> - - activate IP filtering - IP süzme kullanılsın - <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> @@ -19558,17 +19090,17 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - Tor Socks Vekil Sunucu + Tor Socks Vekil Sunucusu @@ -19606,7 +19138,7 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Require whitelist - Beyaz liste iste + Beyaz liste zorunlu olsun @@ -19619,7 +19151,7 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Reset - Sıfırlayın + Sıfırla @@ -19642,7 +19174,7 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Form - Form + Form @@ -19650,7 +19182,7 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Preferences - + Ayarlar @@ -19663,12 +19195,12 @@ Tor bağlantısında sorun yaşıyorsanız Tor günlüklerine de bakın. Share for Friend - Arkadaşınızla Paylaşın + Arkadaşla Paylaş Share - Paylaşın + Paylaş @@ -19688,107 +19220,107 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Shared Folder Manager - Paylaşılan Klasör Yöneticisi + Paylaşılan Klasör Yönetimi Shared directory - + Paylaşılan klasör Visible name - + Görüntülenecek ad Access - + Erişim Visibility - Görünürlük + Görünürlük Add new - + Yeni ekle Cancel - + İptal Add a Share Directory - Paylaşım Klasörü Ekleyin + Paylaşım Klasörü Ekle Remove - Kaldırın + Sil Apply and close - Uygulayın ve kapatın + Uygula ve kapat Share Manager - Paylaşım Yöneticisi + Paylaşım Yönetimi Choose directory - Klasör seçin + Klasör seçin Change group visibility... - + Grup görünürlüğünü değiştir... Choose directory to share... - + Paylaşılacak klasörü seçin... Choose visible name... - + Görüntülenecek adı seçin... [Unset] (Double click to change) - + [Ayarı kaldır] (Değiştirmek için çift tıklayın) Double click to select which groups of friends can see the files - + Dosyaları görebilecek arkadaş grubunuzu değiştirmek için çift tıklayın Double click to change the name that friends will see. - + Arkadaşlarınıza görüntülenecek adı değiştirmek için çift tıklayın. Double click to change shared directory path - + Paylaşılan klasör yolunu değiştirmek için çift tıklayın. Directory does not exist! Double click to change shared directory path - + Klasör bulunamadı! Paylaşılan klasör yolunu değiştirmek için çift tıklayın. [All friend nodes] - + [Tüm arkadaş düğümleri] @@ -19798,18 +19330,18 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Do you really want to stop sharing this directory ? - Gerçekten bu klasör paylaşımını durdurmak istiyor musunuz? + Gerçekten bu klasörü paylaşmayı durdurmak istiyor musunuz? Choose a directory to share - + Paylaşılacak bir klasör seçin Drop file error. - Dosya bırakma hatası. + Dosya bırakma sorunu. @@ -19819,12 +19351,12 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Directory not found or directory name not accepted. - Klasör bulunamadı ya da klasör adı geçersiz. + Klasör bulunamadı ya da klasör adı kabul edilmiyor. 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. - Paylaşılmış klasörlerin listesi. Alttaki düğmeleri kullanarak klasörler ekleyip çıkarabilirsiniz. Yeni bir klasör ilk kez eklediğinizde, bu klasördeki tüm dosyalar paylaşılır. Ardından paylaşılan her klasör için ayrı ayrı paylaşım işaretlerini ayarlayabilirsiniz. + Paylaşılan klasörlerin listesi. Alttaki düğmeleri kullanarak klasörler ekleyip çıkarabilirsiniz. Yeni bir klasörü ilk kez eklediğinizde, bu klasördeki tüm dosyalar paylaşılır. Ardından paylaşılan her klasör için ayrı ayrı paylaşım işaretlerini ayarlayabilirsiniz. @@ -19837,21 +19369,17 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Configure shared directories - - - - Search files - Dosya Arama + Paylaşılan klasörleri yapılandır Start Search - Aramayı Başlatın + Aramayı Başlat Reset - Sıfırlayın + Sıfırla @@ -19891,40 +19419,32 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Download selected - Seçilmişleri indirin + Seçilmişleri indir Download - İndirin + İndir Copy retroshare Links to Clipboard - RetroShare Bağlantılarını Panoya Kopyalayın + RetroShare Bağlantılarını Panoya Kopyala Copy retroshare Links to Clipboard (HTML) - RetroShare Bağlantılarını Panoya Kopyalayın (HTML) + RetroShare Bağlantılarını Panoya Kopyala (HTML) Send retroshare Links - RetroShare Bağlantılarını Gönderin - - - Send retroshare Links to Cloud - RetroShare Bağlantılarını Buluta Gönderin - - - Add Links to Cloud - Bağlantıları Buluta Ekleyin + RetroShare Bağlantılarını Gönder Some files have been omitted - + Bazı dosyalar yok sayıldı @@ -19940,37 +19460,37 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Create Collection... - Derleme Oluşturun... + Derleme Ekle... Modify Collection... - Derlemeyi Düzenleyin... + Derlemeyi Düzenle... View Collection... - Derlemeye Bakın... + Derlemeyi Görüntüle... Download from collection file... - Derleme dosyasından indirin... + Derleme dosyasından indir... Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19983,7 +19503,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Go Online - Çevrimiçi Olun + Çevrimiçi Ol @@ -20004,17 +19524,17 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Message arrived - İleti Ulaştı + İleti ulaştı Download - Indirin + Indir Download complete - Tamamını indirin + İndirme tamamlandı @@ -20032,7 +19552,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Filename: - Dosya Adı + Dosya adı: @@ -20052,7 +19572,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Open File - Dosyayı Açın + Dosyayı Aç @@ -20080,19 +19600,15 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. SplashScreen - - Load profile - Profil Yükleniyor - Load configuration - Ayarlar yükleniyor + Yapılandırmayı yükle Create interface - Arayüz oluşturun + Arayüz ekle @@ -20102,15 +19618,11 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. RetroShare RetroShare - - Login - Oturum Açın - Password - Parola + @@ -20120,7 +19632,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. Log In - Oturum Açın + Oturum Aç @@ -20128,7 +19640,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seçin. adding locations to an existing profile. The current identities/locations will not be affected. Yeni bir profil oluşturmak ya da -varolan profilinize konum eklemek için bir pencere açar +var olan profilinize konum eklemek için bir pencere açar Geçerli kimlikler ve konumlar etkilenmez. @@ -20136,9 +19648,9 @@ Geçerli kimlikler ve konumlar etkilenmez. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -20153,7 +19665,7 @@ p, li { white-space: pre-wrap; } Wrong password - + @@ -20162,18 +19674,6 @@ p, li { white-space: pre-wrap; } Warning Uyarı - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">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"> -<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;">Profilleri ve düğümleri yönetin...</span></a></p></body></html> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. @@ -20185,7 +19685,7 @@ This choice can be reverted in settings. PGP parolanız depolanmayacak. -Bu seçim ayarlardan geri alınabilir. +Bu seçim ayarlardan değiştirilebilir. @@ -20198,7 +19698,7 @@ This choice can be reverted in settings. PGP parolanız depolanmayacak. -Bu seçim ayarlardan geri alınabilir. +Bu seçim ayarlardan değiştirilebilir. @@ -20207,11 +19707,11 @@ Bu seçim ayarlardan geri alınabilir. Your PGP password will not be stored. This choice can be reverted in settings. - SSL sertifikanızın (düğümünüzün) parolası keys/help.dta dosyasında şifreli olarak depolanacak. Bu güveli değil. + SSL sertifikanızın (düğümünüzün) parolası keys/help.dta dosyasında şifreli olarak depolanacak. Bu durum güvenli değil. PGP parolanız depolanmayacak. -Bu seçim ayarlardan geri alınabilir. +Bu seçim ayarlardan değiştirilebilir. @@ -20219,7 +19719,7 @@ Bu seçim ayarlardan geri alınabilir. Add Friend - Arkadaş Ekleyin + Arkadaş Ekle @@ -20229,7 +19729,7 @@ Bu seçim ayarlardan geri alınabilir. Add Share - Paylaşım Ekleyin + Paylaşım Ekle @@ -20239,7 +19739,7 @@ Bu seçim ayarlardan geri alınabilir. Messenger - Anlık Sohbet + Anlık İleti @@ -20254,7 +19754,7 @@ Bu seçim ayarlardan geri alınabilir. Quit - Çıkış + Çık @@ -20295,7 +19795,7 @@ Bu seçim ayarlardan geri alınabilir. Gxs Transport - + @@ -20314,7 +19814,7 @@ Bu seçim ayarlardan geri alınabilir. Away - Dışarıda + Uzakta @@ -20339,7 +19839,7 @@ Bu seçim ayarlardan geri alınabilir. Friend is away - Arkadaş dışarıda + Arkadaş uzakta @@ -20487,7 +19987,7 @@ Bu seçim ayarlardan geri alınabilir. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20500,7 +20000,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20515,7 +20015,7 @@ p, li { white-space: pre-wrap; } Define Style - Stil Tanımlayın + Biçem Tanımla @@ -20536,7 +20036,7 @@ p, li { white-space: pre-wrap; } Style - Stil + Biçem @@ -20564,39 +20064,39 @@ p, li { white-space: pre-wrap; } Cancel Download - İndirmeyi İptal Edin + İndirmeyi İptal Et Download File - Dosyayı İndirin + Dosyayı İndir Download - İndirin + İndir Play File - Dosyayı Oynatın + Dosyayı Oynat Play - Oynatın + Oynat Save File - Dosyayı Kaydedin + Dosyayı Kaydet Remove this item - + @@ -20633,12 +20133,12 @@ p, li { white-space: pre-wrap; } Remove Attachment - Eki Kaldır + Dosya Ekini Kaldır File %1 does not exist at location. - %1 dosyası bu konumda bulunamadı. + %1 dosyası konumda bulunamadı. @@ -20648,22 +20148,22 @@ p, li { white-space: pre-wrap; } Save Channel File - Kanal Dosyasını Kaydedin + Kanal Dosyasını Kaydet Open - Açın + Open File - Dosyayı Açın + Dosyayı Aç Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare Bağlantısını Kopyala @@ -20676,12 +20176,12 @@ p, li { white-space: pre-wrap; } Unsubscribe - Abonelikten Ayrılın + Abonelikten Ayrıl Subscribe - Abone Olun + Abone Ol @@ -20689,7 +20189,7 @@ p, li { white-space: pre-wrap; } Pause - Duraklatın + Duraklat @@ -20730,7 +20230,7 @@ p, li { white-space: pre-wrap; } New tag ... - Yeni etiket... + Etiket ekle... @@ -20751,58 +20251,58 @@ p, li { white-space: pre-wrap; } Dialog - Pencere + Setting up Tor... - + Tor status: - + Unknown - + Bilinmiyor Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20810,28 +20310,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20849,98 +20349,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + Paylaşılan Klasörler Automatically share incoming directory (Recommended) - Otomatik olarak gelen klasörü paylaşılsın (Önerilir) + Gelen klasörü otomatik olarak paylaşılsın (Önerilir) Edit Share - + Paylaşımı Düzenle Auto-check shared directories every - + Paylaşılan klasörler şu aralıkla denetlensin minute(s) - + dakika <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + <html><head/><body><p>RetroShare uygulamasına bağlantıları izlemesini söyler. Çevrimler ve çift klasörler otomatik olarak düzeltilir. İşaretlenmemiş ise RetroShare yalnızca sembolik dosya ve klasör bağlantılarını yok sayar.</p></body></html> follow symbolic links - + sembolik bağlantılar izlensin <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Gelen Klasörü Browse - + Gözat Partials Directory - + Geçici Klasör Maximum uploads per friend (0 = no limit) - + @@ -20955,12 +20455,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + Uçtan uca şifreleme: Allow direct download: - + @@ -20985,50 +20485,58 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + <html><head/><body><p>İsimsiz tüneller uçtan uca şifrelenebilir. Geriye dönük uyumluluğu korumak için isteğe bağlı yapılabilir (&quot;Onaylanmış&quot; olarak seçerek), ancak eninde sonunda, tüm RetroShare düğümleri &quot;Dayatılmış&quot; olarak değiştirilecek. Yani tüm isimsiz aktarımlar uçtan uca şifrelenmiş olacak. &quot;Onaylanmış&quot; seçeneği ile şifrelenmiş ve şifrelenmemiş iki tünelin aynı anda aynı kaynağı aktardığı bilinemeyeceğinden aktarımlar için iki katına kadar fazla tünel kullanılabilir.</p></body></html> Accepted - + Onaylanmış Enforced - + Dayatılmış <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - Evet + Evet No - Hayır + Hayır Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> arkadaşlar arasında yapılmasına gerek olmayan veri ve arama isteklerini aktarımlarını eşler arasında yapabilir. Bu trafikte yalnız bağlantılı arkadaş listesi bulunur ve isimsizdir.</span></p> +<p style="-qt-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;"><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-size:8pt;">Paylaşılan her bir klasör için paylaşım işaretleri paylaşılan dosyalar penceresinden ayarlanabilir :</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Arkadaşlar gözatabilir</span>: Bu dosyaları yalnız arkadaşlarınız görebilir.</li> +<li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">İsimsiz olarak paylaşılan</span>: Bu dosyalara uzak F2F tünelleri üzerinden isimsiz olarak erişilebilir.</li></ul></body></html> @@ -21043,7 +20551,7 @@ p, li { white-space: pre-wrap; } <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>Boş disk alanı bu sınırın altına inerse RetroShare tüm aktarımları ve ayar dosyası kayıtlarını durdurur. Böylece bazı sistemlerde oluşabilecek veri kayıpları engellenir. Bu durum gerçekleşirse açılan bir pencere ile bildirilir.</p></body></html> + <html><head/><body><p>Boş disk alanı bu sınırın altına inerse RetroShare tüm aktarımları ve yapılandırma dosyası kayıtlarını durdurur. Böylece bazı sistemlerde oluşabilecek veri kayıpları engellenir. Gerçekleşirse bu durum açılan bir pencere ile bildirilir.</p></body></html> @@ -21053,17 +20561,17 @@ p, li { white-space: pre-wrap; } Set Incoming Directory - + Gelen Klasörünü Ayarla Set Partials Directory - + Geçici Klasörü Ayarla Files - + Dosyalar @@ -21125,21 +20633,6 @@ p, li { white-space: pre-wrap; } Completed Tamamlandı - - Speed - i.e: Download speed - Hız - - - Progress / Availability - i.e: % downloaded - İlerleme / Kullanılabilirlik - - - Sources - i.e: Sources - Kaynaklar - Status @@ -21155,16 +20648,6 @@ p, li { white-space: pre-wrap; } Remaining Kalan - - Download time - i.e: Estimated Time of Arrival / Time left - İndirme süresi - - - Peer - i.e: user name - - Progress @@ -21193,7 +20676,7 @@ p, li { white-space: pre-wrap; } Search - Ara + Arama @@ -21208,28 +20691,28 @@ p, li { white-space: pre-wrap; } Download from collection file... - Derleme dosyasından indirin... + Derleme dosyasından indir... Pause - Duraklatın + Duraklat Peer i.e: user name / tunnel id - + Resume - Sürdürün + Sürdür Force Check - Denetimi Zorlayın + Denetimi Dayat @@ -21240,12 +20723,12 @@ p, li { white-space: pre-wrap; } Open Folder - Klasörü Açın + Klasörü Aç Open File - Dosyayı Açın + Dosyayı Aç @@ -21266,12 +20749,12 @@ p, li { white-space: pre-wrap; } Copy RetroShare Link - RetroShare Bağlantısını Kopyalayın + RetroShare Bağlantısını Kopyala Paste RetroShare Link - RetroShare Bağlantısını Yapıştırın + RetroShare Bağlantısını Yapıştır @@ -21321,7 +20804,7 @@ p, li { white-space: pre-wrap; } Progressive - İlerleyen + Gelişen @@ -21331,7 +20814,7 @@ p, li { white-space: pre-wrap; } Rename file... - Dosyayı yeniden adlandırın... + Dosyayı yeniden adlandır... @@ -21346,7 +20829,7 @@ p, li { white-space: pre-wrap; } Move in Queue... - Kuyrukta Taşıyın ... + Kuyrukta Taşı... @@ -21361,94 +20844,28 @@ p, li { white-space: pre-wrap; } Set destination directory - Hedef klasörünü ayarlayın + Hedef klasörünü ayarla Choose directory Klasör seçin - - Failed - Başarısız - - - Okay - Tamam - - - Waiting - Bekliyor - - - Downloading - Indiriliyor - - - Complete - Tamamlanmış - - - Queued - Sırada - - - Paused - Duraklatılmış - - - Checking... - Denetleniyor... - - - Unknown - Bilinmeyen - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - İndirilen dosyanın karması dosya -kaynağından duyurulan karma ile -eşleşmiyorsa veriler hasarlı olabilir. - -RetroShare tarafından kaynağa verinin -ayrıntılı haritası sorulacak. Veriler -karşılaştırılarak, bozuk bölümler saptanıp -geçersiz kılınacak ve yeniden indirilecek. - -Lütfen sabırla bekleyin! - - - Transferring - Aktarılıyor - - - Uploading - Yükleniyor - Anonymous end-to-end encrypted tunnel 0x - + İsimsiz uçtan uca şifrelenmiş tünel 0x Tunnel - + Are you sure that you want to cancel and delete these files? - Bu dosyaları iptal edip silmek istediginize emin misiniz? + Bu dosyaları iptal edip silmek istediğinize emin misiniz? @@ -21481,7 +20898,7 @@ Lütfen sabırla bekleyin! Open Transfer - Aktarımı Açın + Aktarımı Aç @@ -21491,7 +20908,7 @@ Lütfen sabırla bekleyin! Change file name - Dosya adını değiştirin + Dosya adını değiştir @@ -21503,15 +20920,6 @@ Lütfen sabırla bekleyin! Please enter a new--and valid--filename Lütfen yeni -ve geçerli- bir dosya adı yazın - - Last Time Seen - i.e: Last Time Receiced Data - Son Görülme - - - UserID - Kullanıcı Kodu - @@ -21619,11 +21027,6 @@ Lütfen sabırla bekleyin! File Transfers Dosya Aktarımları - - Path - i.e: Where file is saved - Yol - Path @@ -21647,17 +21050,17 @@ Lütfen sabırla bekleyin! Create Collection... - Derleme Oluşturun... + Derleme Ekle... Modify Collection... - Derlemeyi Düzenleyin... + Derlemeyi Düzenle... View Collection... - Derlemeye Bakın... + Derlemeyi Görüntüle... @@ -21667,21 +21070,17 @@ Lütfen sabırla bekleyin! %1 tunnels - + Anonymous tunnel 0x İsimsiz tünel 0x - - version: - sürüm: - Files - + Dosyalar @@ -21713,7 +21112,7 @@ Lütfen sabırla bekleyin! Empty - + @@ -21724,7 +21123,7 @@ Lütfen sabırla bekleyin! Friends Directories [updating...] - + Arkadaşların Klasörleri [güncelleniyor...] @@ -21734,7 +21133,7 @@ Lütfen sabırla bekleyin! My Directories [updating...] - + Klasörlerim [güncelleniyor...] @@ -21744,7 +21143,7 @@ Lütfen sabırla bekleyin! # Files - + # Dosyalar @@ -21764,22 +21163,22 @@ Lütfen sabırla bekleyin! Access - + Erişim Visibility - Görünürlük + Görünürlük Column %1 - + Sütun %1 Row %1 - + Satır %1 @@ -21828,7 +21227,7 @@ Lütfen sabırla bekleyin! Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -22033,12 +21432,12 @@ Lütfen sabırla bekleyin! Show Log - Günlüğe Bakın + Günlüğü Görüntüle Show Settings - Ayarlara Bakın + Ayarları Görüntüle @@ -22048,12 +21447,12 @@ Lütfen sabırla bekleyin! Quit - Çıkış + Çık Browse - Gözatın + Gözat @@ -22076,43 +21475,27 @@ Lütfen sabırla bekleyin! Port: - Kapı: + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - Kapı : - - - allow access from all IP adresses (Default: localhost only) - tüm IP adreslerinden erişilebilsin (Varsayılan: yalnız yerel sunucudan) - - - apply setting and start browser - ayarları uygulayıp tarayıcıyı yeniden başlatın - - - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - Not: Bu ayarlar retroshare-nogui bölümünü etkilemez. retroshare-nogui web arayüzünü etkinleştiren bir komut satırı anahtarına sahiptir. + <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;Web Arayüzü</h1> <p>Web arayüzü ile RetroShare web tarayıcı üzerinden kullanılabilir. Birden çok aygıt bir RetroShare kopyası üzerinden denetlenebilir. Böylece bir tablet üzerinden başlattığınız sohbeti masaüstü bilgisayar üzerinden sürdürebilirsiniz.</p> <p>Uyarı: Erişim denetimi ve şifreleme olmadığından, web arayüzünü İnternet üzerine açmayın.Web arayüzünü İnternet üzerinden kullanmak istiyorsanız bağlantı güvenliğini sağlamak için bir SSH tüneli ya da vekil sunucusu kullanın.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Web Arayüzü</h1> <p>Web arayüzü ile RetroShare web tarayıcı üzerinden kullanılabilir. Birden çok aygıt bir RetroShare kopyası üzerinden denetlenebilir. Böylece bir tablet üzerinden başlattığınız sohbeti masaüstü bilgisayar üzerinden sürdürebilirsiniz.</p> <p>Uyarı: Erişim denetimi ve şifreleme olmadığından, web arayüzünü İnternet üzerine açmayın. Web arayüzünü İnternet üzerinden kullanmak istiyorsanız bağlantı güvenliğini sağlamak için bir SSH tüneli ya da vekil sunucusu kullanın.</p> @@ -22155,7 +21538,7 @@ Lütfen sabırla bekleyin! Travel - Seyahat + Yolculuk @@ -22206,12 +21589,12 @@ Lütfen sabırla bekleyin! Restricted - Sınırlı + Kısıtlı N/A - Geçersiz + Kullanılamıyor @@ -22236,7 +21619,7 @@ Lütfen sabırla bekleyin! Authenticated Comments - Doğrulanmış Yorumlar + Kimliği Doğrulanmış Yorumlar @@ -22256,7 +21639,7 @@ Lütfen sabırla bekleyin! Create Group - Grup Oluşturun + Grup Ekle @@ -22285,7 +21668,7 @@ Lütfen sabırla bekleyin! Orig Id - Özgün Kod + Kaynak Kodu @@ -22300,12 +21683,12 @@ Lütfen sabırla bekleyin! Republish - Yeniden Yayınlayın + Yeniden Yayınla Edit - Düzenleyin + Düzenle @@ -22320,7 +21703,7 @@ Lütfen sabırla bekleyin! Search - Ara + Arama @@ -22345,12 +21728,12 @@ Lütfen sabırla bekleyin! Subscribe to Group - Gruba Abone Olun + Gruba Abone Ol Unsubscribe to Group - Grup Aboneliğinden Ayrılın + Grup Aboneliğinden Ayrıl @@ -22360,12 +21743,12 @@ Lütfen sabırla bekleyin! Show Wiki Group - Wiki Grubu Görüntülensin + Wiki Grubunu Görüntüle Edit Wiki Group - Wiki Grubunu Düzenleyin + Wiki Grubunu Düzenle @@ -22461,12 +21844,12 @@ Lütfen sabırla bekleyin! Revert - Geri Alın + Geri Al Submit - Gönderin + Gönder @@ -22476,24 +21859,24 @@ Lütfen sabırla bekleyin! Edit Page - Sayfayı Düzenleyin + Sayfayı Düzenle Create New Wiki Page - Yeni Wiki Sayfası Oluşturun + Yeni Wiki Sayfası Ekle Republish - Yeniden Yayınlayın + Yeniden Yayınla Edit Wiki Page - Wiki Sayfasını Düzenleyin + Wiki Sayfasını Düzenle @@ -22501,7 +21884,7 @@ Lütfen sabırla bekleyin! Create New Wiki Group - Yeni Wiki Grubu Oluşturun + Yeni Wiki Grubu Ekle @@ -22511,12 +21894,12 @@ Lütfen sabırla bekleyin! Edit Wiki Group - Wiki Grubunu Düzenleyin + Wiki Grubunu Düzenle Add Wiki Moderators - Wiki Sorumluları Ekleyin + Wiki Sorumluları Ekle @@ -22526,12 +21909,12 @@ Lütfen sabırla bekleyin! Create Group - Grup Oluşturun + Grup Ekle Update Group - Grubu Güncelleyin + Grubu Güncelle @@ -22590,7 +21973,7 @@ Lütfen sabırla bekleyin! Manage Accounts - Hesapları Yönetin + Hesap Yönetimi @@ -22610,12 +21993,12 @@ Lütfen sabırla bekleyin! Following - İzleyen + İzlenen Custom - Uyarlanmış + Özel @@ -22689,7 +22072,7 @@ Lütfen sabırla bekleyin! Unknown - Bilinmeyen + Bilinmiyor @@ -22748,7 +22131,7 @@ Lütfen sabırla bekleyin! Load avatar image - Avatar görselini yükleyin + Avatar görseli yükle @@ -22761,134 +22144,133 @@ Lütfen sabırla bekleyin! Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - Güvenilirlik düzeyi + Has signed your key? - + Id - + Last used - Son kullanılma + Personal signature - Kişisel imza + Marginally trusted peer - Çok az güvenilir eş + Fully trusted peer - Tamamen güvenilir eş + Untrusted peer - Güvenilmez eş + Yes - Evet + Evet No - Hayır + Hayır Last hour - Son 1 saat + Today - + Never - Hiç + %1 days ago - %1 gün önce + Accepted - + - - + PGP key signed by you - İmzaladığınız PGP anahtarı + has authenticated you. Right-click and select 'make friend' to be able to connect. - sizi doğruladı. -Bağlanabilmek için sağ tıklayın ve 'Arkadaş Olun' seçeneğini seçin. + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_zh_CN.qm b/retroshare-gui/src/lang/retroshare_zh_CN.qm index e8cc7d5ff..31a6da138 100644 Binary files a/retroshare-gui/src/lang/retroshare_zh_CN.qm and b/retroshare-gui/src/lang/retroshare_zh_CN.qm differ diff --git a/retroshare-gui/src/lang/retroshare_zh_CN.ts b/retroshare-gui/src/lang/retroshare_zh_CN.ts index 975ccb837..81bd72094 100644 --- a/retroshare-gui/src/lang/retroshare_zh_CN.ts +++ b/retroshare-gui/src/lang/retroshare_zh_CN.ts @@ -1,13 +1,11 @@ - - - + AWidget Retroshare version - + RetroShare 版本 @@ -28,7 +26,7 @@ About - 关于 + 关于 @@ -36,52 +34,52 @@ Form - + 表单 About - 关于 + 关于 Copy Info - + 复制信息 close - + 关闭 Max score: %1 - + 最高得分: %1 Score: %1 - + 得分: %1 Level: %1 - + 等级:%1 About RetroShare - 关于 RetroShare + 关于 RetroShare Have fun ;-) - + 祝您使用愉快 ;-) Only Hidden Node - + 仅隐藏节点 @@ -116,7 +114,7 @@ - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file 抱歉,无法确定此文件的系统默认命令 @@ -333,7 +331,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -364,12 +362,12 @@ p, li { white-space: pre-wrap; } Say something about this album... - 关于这相册说点什么吧… + 写点什么吧… Where were these taken? - 这些是在哪里照的? + 这些是在哪里拍摄的? @@ -455,7 +453,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -503,7 +501,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -516,7 +514,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -540,7 +538,7 @@ p, li { white-space: pre-wrap; } (Needs restart) - + (需要重启) @@ -625,47 +623,47 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - + 显示弹出消息禁用 Show Sound Status - + 显示声音状态 Show Network Rate Status - + 显示网络速率状态 Show Discovery Status - + 显示发现状态 Show DHT Status - + 显示 DHT 状态 Show Hashing Status - + 显示哈希状态 Show NAT Status - + 显示 NAT 状态 Show Peer Status - + 显示节点状态 Show Status ComboBox - + 显示状态列 @@ -680,7 +678,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - + 显示运行模式状态 @@ -695,17 +693,17 @@ p, li { white-space: pre-wrap; } Main page items: - + 主页项目: Buttons - + 按钮 Item list - + 项目列表 @@ -751,7 +749,7 @@ p, li { white-space: pre-wrap; } The Wire - + The Wire @@ -802,7 +800,7 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - 设置头像图片 + 设置头像 @@ -875,7 +873,7 @@ p, li { white-space: pre-wrap; } Changes the transparency of the Bandwidth Graph - 更改带宽图表的透明度 + 调整带宽图表的透明度 @@ -935,12 +933,12 @@ p, li { white-space: pre-wrap; } Average - 平均 + 平均 Total - + 总和 @@ -1061,17 +1059,17 @@ p, li { white-space: pre-wrap; } Legend: - + Current - + 当前 Total - + 总和 @@ -1109,14 +1107,10 @@ p, li { white-space: pre-wrap; } ChatLobbyDialog - - Participants - 参加者 - Name - 名称 + 名字 @@ -1131,7 +1125,7 @@ p, li { white-space: pre-wrap; } Ban this person (Sets negative opinion) - 拉入黑名单 (Sets negative opinion) + 屏蔽这个人 (给出负面评价) @@ -1168,10 +1162,6 @@ p, li { white-space: pre-wrap; } Topic: %1 话题: %1 - - Lobby management - 聊天室管理 - %1 changed his name to: %2 @@ -1200,38 +1190,38 @@ p, li { white-space: pre-wrap; } Give neutral opinion - + 给出中立评价 Give positive opinion - + 给出正面评价 Show author in people tab - + 在身份页显示作者 Search - 搜索 + 搜索 Leave this chat room (Unsubscribe) - + 退出这个聊天室(未订阅) Welcome to chat room %1 - + 欢迎来到聊天室%1 Room chat - + 聊天室 @@ -1271,29 +1261,29 @@ p, li { white-space: pre-wrap; } %1 has left the room. - + %1离开了这个房间 Chat room management - + 聊天室管理 %1 joined the room. - + %1加入了这个房间 Unsubscribe from chat room - + 从聊天室取消订阅 Do you want to unsubscribe to this chat room? - + 你想要取消订阅此聊天室吗? @@ -1309,7 +1299,7 @@ p, li { white-space: pre-wrap; } Chats - + 聊天室 @@ -1364,106 +1354,108 @@ p, li { white-space: pre-wrap; } Private Subscribed chat rooms - + 订阅的私有聊天室 Public Subscribed chat rooms - + 订阅的公共聊天室 Private chat rooms - + 私密聊天室 Public chat rooms - + 公共聊天室 <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms 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;聊天室</h1> <p>聊天室差不多与IRC用法相同, 方便你与为数众多的人聊天而不需要互加好友,</p> <p>聊天室可以公开(你的好友看到)或私人(你的好友看不到它,除非你邀请他们 <img src=":/images/add_24x24.png" width=%2/>). 一旦你被邀请到私人房间,你将能够在您的好友使用时 看到它.</p> <p>左侧列表显示 你好友正参与的聊天大厅 <ul> <li>你也可以右键创建新的房间</li> <li>双击进入,聊天,并介绍给你的好友</li> </ul> 聊天室基于时钟的, 为了聊天室更好的工作,请检查你的系统时间! </p> Create chat room - + 创建聊天室 Leave this room - + 离开此房间 Create a non anonymous identity and enter this room - + 创建一个匿名身份并进入此房间 Create an identity and enter this chat room - + 创建一个身份并进入这个房间 Enter this chat room - + 进入这个聊天室 Enter this chat room as... - + 以……身份进入这个聊天室 Copy RetroShare Link - 复制 RetroShare 链接 + 复制RetroShare链接 You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + 你不能以默认身份加入此聊天室,因为它是匿名的,而聊天室禁止使用。 You're not subscribed to this chat room; Double click-it to enter and chat. - + 你没有订阅这个房间,请双击进入 You will need to create a non anonymous identity in order to join this chat room. - + 你需要创建一个非匿名身份才能进入这个房间 You will need to create an identity in order to join chat rooms. - + 你需要创建一个身份来加入聊天室。 No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + 没有选中任何房间 +在左边选中房间会显示细节 +双击房间可以进入聊天 %1 invites you to chat room named %2 - + %1 邀请你进入房间%2 Choose a non anonymous identity for this chat room: - + 为此聊天室选择一个非匿名身份: Choose an identity for this chat room: - + 对这个聊天室选择一个身份: @@ -1539,17 +1531,17 @@ Double click a chat room to enter and chat. Chat rooms - + 聊天室 Chat room Name: - + 聊天室名称: Chat room Id: - + 聊天室 ID : @@ -1589,14 +1581,14 @@ Double click a chat room to enter and chat. No anonymous IDs - + 没有匿名 ID Show - 显示 + 显示 @@ -1608,7 +1600,7 @@ Double click a chat room to enter and chat. Chats - + 聊天室 @@ -1686,7 +1678,7 @@ Double click a chat room to enter and chat. Accept encrypted distant chat from - + 接受加密的远程聊天从 @@ -1746,7 +1738,7 @@ Double click a chat room to enter and chat. Load embedded images - 载入内置图像 + 加载内嵌图像 @@ -1761,7 +1753,7 @@ Double click a chat room to enter and chat. Do not send typing notifications - + 不要显示输入提示 @@ -1819,14 +1811,14 @@ Double click a chat room to enter and chat. Style: - + 样式: Variant: - + 变量: @@ -1843,7 +1835,7 @@ Double click a chat room to enter and chat. Choose your default font for Chat. - + 选择你的默认聊天字体 @@ -1900,14 +1892,10 @@ Double click a chat room to enter and chat. /me is sending a message with /me /me发送消息给 /me - - 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">对于不同的聊天系统,这个选项卡是用来设置允许RetroShare可以保存多少聊天消息,以及显示多少条过去的对话。最大存储周期允许丢弃旧消息以防滞留过多不重要的消息(比如,聊天室和年代久远的聊天记录).</p></body></html> @@ -1952,7 +1940,7 @@ Double click a chat room to enter and chat. Move to cursor - + 移到光标处 @@ -1977,27 +1965,27 @@ Double click a chat room to enter and chat. Threshold for automatic search - + 自动搜索的最大值 Default identity for chat lobbies: - + 聊天室的默认身份 Show Bar by default - + 默认显示状态条 Private chat invite from - + 私密聊天邀请从 Name : - + 名字: @@ -2007,12 +1995,12 @@ Double click a chat room to enter and chat. Valid until : - + 不可用单元 Chats - + 聊天 @@ -2094,7 +2082,7 @@ Double click a chat room to enter and chat. Insert emoticon - + 插入表情 @@ -2104,7 +2092,7 @@ Double click a chat room to enter and chat. <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + <html><head/><body><p>QT工具按钮:禁用 {</p><p>⇥image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> @@ -2165,17 +2153,17 @@ Double click a chat room to enter and chat. Quotes the selected text - + 引用选中文本 Drop Placemark - + 添加下标 Insert horizontal rule - + 插入水平线 @@ -2201,7 +2189,7 @@ Double click a chat room to enter and chat. Show Hidden Images - + 显示隐藏图片 @@ -2212,18 +2200,18 @@ Double click a chat room to enter and chat. It remains %1 characters after HTML conversion. - + HTML转换后还剩%1个字符 Warning: This message is too big of %1 characters after HTML conversion. - + 警告:这条信息在HTML转换后还多余%1个字符 Choose your font. - + 选择字体 @@ -2258,11 +2246,7 @@ after HTML conversion. Messages you send will be delivered after Friend is again Online. - - - - Messages you send will be delivered after Friend is again Online - 您的消息将在好友再次上线时发送。 + 你发送的信息将会在好友再次上线后发出。 @@ -2282,7 +2266,7 @@ after HTML conversion. Find Case Sensitively - + 区分大小写查找 @@ -2294,27 +2278,27 @@ after HTML conversion. Move To Cursor - + 移动到光标 Don't stop to color after X items found (need more CPU) - + X物品发现后,请勿停止着色(需要更多CPU占用) <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>Find </b><br/><i>Ctrl+F</i> - + <b>查找 </b><br/><i>Ctrl+F</i> @@ -2345,23 +2329,23 @@ after HTML conversion. <b>Mark this selected text</b><br><i>Ctrl+M</i> - + <b>标记选择文本</b><br><i>Ctrl+M</i> Person id: - + 个人ID Double click on it to add his name on text writer. - + Unsigned - + 未签名 @@ -2376,17 +2360,17 @@ Double click on it to add his name on text writer. <b>Return to marked text</b><br><i>Ctrl+M</i> - + <b>回到标记文本</b><br><i>Ctrl+M</i> Type a message here - 再此输入消息 + 在此输入消息 Don't stop to color after - + 请勿停止着色 @@ -2404,7 +2388,7 @@ Double click on it to add his name on text writer. Empty Circle - + 空白圈子 @@ -2417,7 +2401,7 @@ Double click on it to add his name on text writer. Membership - 会员 + 会员身份 @@ -2546,10 +2530,6 @@ Double click on it to add his name on text writer. Details 详情 - - Peer Address - 节点地址 - @@ -2564,12 +2544,12 @@ Double click on it to add his name on text writer. Node info: - + 节点信息: Current address: - + 当前地址: @@ -2582,10 +2562,6 @@ Double click on it to add his name on text writer. Port 端口 - - Addresses list - 地址列表 - Include signatures @@ -2615,14 +2591,10 @@ Double click on it to add his name on text writer. Not connected 未连接 - - Peer Addresses - 节点地址 - Retroshare node details - + RetroShare节点详情 @@ -2642,32 +2614,32 @@ Double click on it to add his name on text writer. Retroshare version : - + RetroShare版本 Node ID : - + 节点 ID : Name: - 名称: + 名字: Status message: - + 状态消息: List of known addresses: - + 已知地址列表: Retroshare Certificate - Retroshare 证书 + RetroShare 证书 @@ -2683,47 +2655,47 @@ Double click on it to add his name on text writer. <p>This certificate contains: - + <p>此证书包含: <li>a <b>node ID</b> and <b>name</b> - + <li>a <b>节点 ID</b> 和 <b>名字</b> an <b>onion address</b> and <b>port</b> - + an <b>洋葱地址</b> 和<b>端口</b> an <b>IP address</b> and <b>port</b> - + an <b>IP地址</b> 和<b>端口</b> <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <p>您可以使用此证书结交新朋友。通过电子邮件发送,或手动发送。</ p> <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> key. </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>这个加密方式是 <span style=" font-weight:600;">OpenSSL</span>. 到好友的连接</p><p>是强加密的,如果有DHE</p><p>&quot;安全效果会更加完美&quot;.</p></body></html> with - + external signatures</li> - + 外部签名</li> @@ -2741,18 +2713,19 @@ Double click on it to add his name on text writer. &You get a certificate file from your friend - 通过好友的证书文件(&Y) + &通过好友的证书文件 &Make friend with selected friends of my friends - 将好友的好友加为好友(&M) + &将好友的好友加为好友 &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + &发送邀请邮件 +(你的好友将会受到一封RetroShare下载教程邮件) @@ -2778,17 +2751,17 @@ Double click on it to add his name on text writer. Open Cert of your friend from File - + 从文件打开你好友的证书 Open certificate - + 打开证书 Please, paste your friend's Retroshare certificate into the box below - + 请粘贴你朋友的证书链接到下面的输入框 @@ -2873,12 +2846,12 @@ Double click on it to add his name on text writer. RetroShare is better with Friends - + 朋友之间用RetroShare更好 Invite your Friends from other Networks to RetroShare. - + 从其他网络邀请好友到 RetroShare 。 @@ -2976,7 +2949,7 @@ Double click on it to add his name on text writer. 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. - + 请注意,如果你添加太多的好友,RetroShare 将会需要大量带宽,内存和CPU占用,你可以尽可能多的加好友,但是超过40个好友可能就会占用大量资源 @@ -2993,7 +2966,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: - + 这个向导将帮助你连接到你的朋友(们)进入RetroShare网络,<br>请选择你想怎么添加你的好友 @@ -3010,12 +2983,6 @@ resources. &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) - 通过 Email 发送邀请(&S) -(对方将收到一封电子邮件其中包括如何下载使用 RetroShare 的说明) - Recommend many friends to each other @@ -3024,22 +2991,22 @@ resources. RetroShare certificate - + RetroShare 证书 Please paste below your friend's Retroshare certificate - + 请在下面粘贴你的好友的 RetroShare 证书 Paste certificate - + 粘贴证书 <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + <html><head/><body><p>这里只能输入你的好友的RetroShare证书。 注意,这跟你好友账户的密钥是不一样的。不要再这里粘贴好友的密钥,没用的 (就算是密钥的一部分也不行)。</p></body></html> @@ -3098,7 +3065,7 @@ resources. <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;">签署好友的钥匙是表达你对这个好友,给你的其他好友的信任的一种方式。 下面的签名加密地证明所列出的密钥的所有者将当前的PGP密钥识别为真实的</span></p></body></html> @@ -3189,12 +3156,12 @@ resources. Certificate appears to be valid - + 证书似乎有效 Not a valid Retroshare certificate! - + 不是一个有效的 RetroShare 证书! @@ -3207,31 +3174,33 @@ resources. Warning: In your File-Transfer option, you select allow direct download to Yes. - + +警告:你在文件传输选项中开启了直接下载 Warning: In your File-Transfer option, you select allow direct download to No. - + +警告:你在文件传输选项中关闭了直接下载。 This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + 这是你自己的证书!你该不会是想和自己交朋友吧? This key is already on your trusted list - + 此密钥已经在你的信任列表中 You have already signed this key - + 你已经签名了此密钥 @@ -3372,27 +3341,27 @@ Warning: In your File-Transfer option, you select allow direct download to No. Show Advanced options - + 显示高级选项 <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;">签署好友的钥匙是表达你对这个好友,给你的其他好友的信任的一种方式。 它可以帮助他们决定是否允许基于您自己的信任的密钥进行连接。 签署密钥是绝对可选的,不能撤销,所以请做出明智的选择.</span></p></body></html> <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">RetroShare会定期检查您的好友列表中的可浏览文件与您的传输匹配,以建立直接传输。 在这种情况下,您的好友知道您正在下载文件.</p><p align="justify">要防止此行为(仅适用于此好友),请取消选中此框。 如果您明确要求,您仍然可以执行直接传输。 从你好友的文件列表下载。 此设置应用于同一节点的所有位置.</p></body></html> <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. Applied to all locations of the same node.</p></body></html> - + <html> <head /> <body> <p>此选项允许您自动下载来自此节点的消息中推荐的文件。 这可以用于例如在您自己的节点之间发送文件。 应用于同一节点的所有位置。</ 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. Applies to all locations of the same node.</p></body></html> - + <html> <head /> <body> <p>如果连接地址不在白名单中,则具有此选项的对等人无法连接。 这样可以防止流量转发攻击。 当被使用时,被拒绝的对方将被“安全馈送项目”报告。 在新闻Feed部分。 从那里,您可以对其IP进行白名单/黑名单。 适用于同一节点的所有位置。</ p> </ body> </ html> @@ -3407,7 +3376,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. The text below is your Retroshare certificate. You have to provide it to your friend - + 下面的文本是你的 RetroShare 证书。你必须提供给你的好友 @@ -3450,12 +3419,15 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + 检查这个,将密钥添加到密钥环 +这可能对给其他你 +没有添加的节点 +发送远程信息有用。 Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + 证书包含错误的版本号,记住0.6版本跟0.5版本不能相互添加 @@ -3471,13 +3443,13 @@ even if you don't make friends. Can be used as direct source - + 可以用作直接连接的源 Require whitelist clearance to connect - + 连接需要清空白名单 @@ -3492,12 +3464,12 @@ even if you don't make friends. <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>此证书没有IP。 你会依靠节点发现和DHT找到它。 由于您需要清除白名单,节点将在NewsFeed选项卡中引发安全警告。 从那里,你可以将他的IP列入白名单。</ p> Added with certificate from %1 - + 添加来自1%的证书 @@ -3589,13 +3561,13 @@ even if you don't make 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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + @@ -3732,7 +3704,7 @@ p, li { white-space: pre-wrap; } Retroshare will continue connecting in the background - Retroshare 将在后台继续连接 + RetroShare 将在后台继续连接 @@ -3754,7 +3726,7 @@ p, li { white-space: pre-wrap; } Try again shortly, Retroshare will continue connecting in the background - 请稍候重试,RS 将在后台继续连接 + 请稍候重试,RetroShare 将在后台继续连接 @@ -3848,12 +3820,12 @@ p, li { white-space: pre-wrap; } The DHT is OFF, so Retroshare cannot find your Friends. - DHT 已关闭,RS 无法找到您的好友。 + DHT 已关闭,RetroShare 无法找到您的好友。 Retroshare has tried All Known Addresses, with no success - RS 已尝试所有地址,全部失败。 + RetroShare 已尝试所有地址,全部失败。 @@ -3922,7 +3894,7 @@ p, li { white-space: pre-wrap; } Your Friend has configured Retroshare with DHT Disabled. - 您的好友设置 RS 禁用 DHT。 + 您的好友设置 RetroShare 禁用 DHT。 @@ -3932,12 +3904,12 @@ p, li { white-space: pre-wrap; } Retroshare has determined that they have DHT switched off - RS 判断对方关闭了 DHT + RetroShare 判断对方关闭了 DHT Without the DHT it is hard for Retroshare to locate your friend - 没有 DHT,RS 难以连接您的好友。 + 没有 DHT,RetroShare 难以连接您的好友。 @@ -3990,17 +3962,17 @@ p, li { white-space: pre-wrap; } Only Advanced Retroshare users should switch off the DHT. - 只建议高级 Retroshare 用户关闭 DHT 。 + 只建议高级 RetroShare 用户关闭 DHT 。 Retroshare cannot connect without this information - 缺少此信息 Retroshare 无法连接。 + 缺少此信息 RetroShare 无法连接。 They need a Certificate + Node for UDP connections to succeed - + 为了能用UDP连通,他们需要一个证书+节点 @@ -4021,12 +3993,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + @@ -4057,7 +4029,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + <html> <head /> <body> <p>此列表的成员将被自动提议加入社区(通过接受会员资格)。加入之前之前,他们将</p><p>不会收到限于此圈子的数据 </ p> </ body> </ html> @@ -4097,12 +4069,12 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>公开分发的圈子对您的好友可见,他们会知道圈子数据(创建者,成员等)</p></body></html> <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + <html><head/><body><p>私有的(a.k.a.自限制)圈子只对这些圈子的邀请成员可见。 在实际使用中,圈子使用自己的邀请成员列表来限制自己的分发。 </p></body></html> @@ -4112,19 +4084,19 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + <html><head/><body><p>圈子可以限制在另一个圈子的成员身上。 只有该第二圈的成员才能看到新圈子及其内容(成员列表等)。</p></body></html> Only visible to members of: - + 仅对下列成员可见: RetroShare - Retroshare + RetroShare @@ -4294,9 +4266,9 @@ 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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4382,7 +4354,7 @@ p, li { white-space: pre-wrap; } RetroShare - Retroshare + RetroShare @@ -4408,7 +4380,7 @@ p, li { white-space: pre-wrap; } Do you really want to generate %1 messages ? - + 你真的想生成 %1 消息吗? @@ -4418,7 +4390,7 @@ p, li { white-space: pre-wrap; } Edit Channel Post - + @@ -4457,7 +4429,7 @@ p, li { white-space: pre-wrap; } Forum Post - 邮件 + 论坛贴文 @@ -4477,7 +4449,7 @@ p, li { white-space: pre-wrap; } Edit Message - + @@ -4494,7 +4466,7 @@ p, li { white-space: pre-wrap; } RetroShare - Retroshare + RetroShare @@ -4509,13 +4481,13 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + @@ -4525,12 +4497,12 @@ Do you want to discard this message? No compatible ID for this forum - + 没有兼容此论坛的 ID None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + 您的身份不允许在此论坛中发布。 这可能是由于论坛限于一个不包含您的身份的圈子,或者论坛需要PGP签名的身份。 @@ -4541,17 +4513,13 @@ Do you want to discard this message? Do you really want to generate %1 messages ? - + 你真的想生成 %1 消息吗? Send 发送 - - Forum Message - 论坛消息 - Post as @@ -4588,7 +4556,7 @@ Do you want to discard this message? Visibility: - + 可见性: @@ -4603,12 +4571,12 @@ Do you want to discard 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>如果您检查这个,只有PGP签名的ID可以在这个大厅加入和谈话。 这个限制防止匿名垃圾邮件发送,因为大厅中的至少一些人可能找到垃圾邮件发送者的节点</p></body></html> require PGP-signed identities - + 需要 PGP 签名的身份 @@ -4628,12 +4596,12 @@ Do you want to discard this message? Create Chat Room - + 创建聊天室 Put a sensible chat room name here - + 在这里输入一个主题鲜明的房间名 @@ -4721,7 +4689,7 @@ Do you want to discard this message? RetroShare - Retroshare + RetroShare @@ -4761,7 +4729,7 @@ Do you want to discard this message? Friend nodes: - 朋友节点: + 好友节点: @@ -4786,7 +4754,7 @@ Do you want to discard this message? show statistics window - + 显示统计窗口 @@ -4807,7 +4775,7 @@ Do you want to discard 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> - + <p>RetroShare使用Bittorrent的DHT作为连接的代理。 它不会将您的IP存储在DHT中.。 相反,您的好友可以使用DHT来处理标准的DHT请求。 一旦RetroShare从您的一个好友获得DHT响应,状态栏符号将变为绿色。</p> @@ -4861,17 +4829,17 @@ Do you want to discard this message? Faster - 更快 + Average - 平均 + 平均 Slower - 更慢 + @@ -5143,17 +5111,17 @@ Do you want to discard this message? DETERMINISTIC SYM NAT - + 对称 NAT RESTRICTED CONE NAT - + 受限制锥形 NAT FULL CONE NAT - + 完全锥型 NAT @@ -5233,12 +5201,12 @@ Do you want to discard this message? CAUTION: UNVERIFIABLE FORWARD! - + 注意:端口转发状态无法确认! CAUTION: UNVERIFIABLE FORWARD & NO DHT - + 注意:端口转发状态无法确认且无 DHT @@ -5313,7 +5281,7 @@ Do you want to discard this message? RELAY END - + 中继结束 @@ -5330,12 +5298,12 @@ Do you want to discard this message? unlimited - + 无限制 Own Relay - + 拥有的中继 @@ -5359,7 +5327,7 @@ Do you want to discard this message? Relays - + 中继 @@ -5382,37 +5350,37 @@ Do you want to discard this message? Net Status: - + NAT 状态: Network Mode: - + 网络模式: Nat Type: - + NAT 类型: Nat Hole: - + NAT 洞: Connect Mode: - + 连接模式: Peer Address: - + 节点地址: Unreach: - + 不可达: @@ -5427,7 +5395,7 @@ Do you want to discard this message? DHT Peers: - + DHT 节点: @@ -5437,7 +5405,7 @@ Do you want to discard this message? Direct: - + 直连: @@ -5452,7 +5420,7 @@ Do you want to discard this message? Filter: - + 筛选: @@ -5463,27 +5431,27 @@ Do you want to discard this message? Peers - 节点 + 节点 Relay - 中继 + 中继 DHT Graph - + DHT 图 Proxy VIA - + 代理通过 Relay VIA - + 中继通过 @@ -5564,7 +5532,7 @@ Do you want to discard this message? &New - 新建(&N) + &新建 @@ -5574,7 +5542,7 @@ Do you want to discard this message? &Edit - 编辑(&E) + &编辑 @@ -5584,7 +5552,7 @@ Do you want to discard this message? &Remove - 移除(&R) + &移除 @@ -5604,7 +5572,7 @@ Do you want to discard this message? You this - + 你的这个 @@ -5769,22 +5737,22 @@ Do you want to discard this message? Patch - + 补丁 C++ - + C++ Header - + C - + C @@ -5802,7 +5770,7 @@ Do you want to discard this message? # Files - + @@ -5832,12 +5800,12 @@ Do you want to discard this message? Column %1 - + %1列 Row %1 - + %1行 @@ -5857,10 +5825,6 @@ Do you want to discard this message? Expand new messages 展开新消息 - - Forum - 论坛 - Load embedded images @@ -5869,12 +5833,12 @@ Do you want to discard this message? <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + <html><head/><body><p>这个选项的代价较高,虽然在开发者的改进计划中。在此时此刻这项功能是默认禁用的。如果你使能了后发现论坛里的长帖子要花很久显示,那么就再把它禁用。</p></body></html> Load emoticons (costly) - + 加载表情(占资源) @@ -5884,12 +5848,12 @@ Do you want to discard this message? Open each forum in a new tab - + 在新标签页打开每个论坛 Forums - 论坛 + @@ -5903,7 +5867,7 @@ Do you want to discard this message? ID - ID + @@ -5913,33 +5877,33 @@ Do you want to discard this message? export friendlist - + 导出好友列表 export your friendlist including groups - + 导出你的好友列表包括分组 import friendlist - + 导入好友列表 import your friendlist including groups - + 导出你的好友列表包括分组 Show State - + 显示状态 Trusted nodes - + 信任的节点 @@ -5987,27 +5951,27 @@ Do you want to discard this message? Search - 搜索 + 搜索 Search ID - + Sort by state - + 以状态分类 Profile details - + 用户信息 Deny connections - + 拒绝连接 @@ -6032,17 +5996,17 @@ Do you want to discard this message? Send message to this node - + 发送消息到这个节点 Node details - + 节点信息 Recommend this node to... - + 推荐这个节点给... @@ -6068,82 +6032,87 @@ Do you want to discard this message? 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 your friendlist from - + 选择导入你好友列表文件的位置 Select a file for exporting your friendlist to - + 选择导出你好友列表文件的位置 XML File (*.xml);;All Files (*) - + XML 文件 (*.xml);;所有文件 (*) Error - 错误 + 错误 File is not writeable! - + 无法写入文件! File is not readable! - + 无法读取文件! Show Items - + 显示项目 @@ -6173,22 +6142,22 @@ at least one peer was not added to a group Remove Friend Node - + 移除好友节点 Do you want to remove this node? - + 你想移除这个节点吗 Send message to whole group - + 给所有群组发送信息 Send message - + 发送消息 @@ -6196,42 +6165,42 @@ at least one peer was not added to a group Dialog - + 对话 Message: - 消息: + 消息: Recommend friends - 推荐好友 + 推荐好友 To - 收件人 + Please select at least one friend for recommendation. - 请选择至少一个好友以推荐。 + 请选择至少一个好友以推荐。 Please select at least one friend as recipient. - 请选择至少一个好友以接收。 + 请选择至少一个好友以接收。 Recommendation messages sent! - + 消息推荐已发送 A recommendation message was sent to each of the chosen friends! - + 消息推荐已发送给每一个选中的好友 @@ -6262,12 +6231,12 @@ at least one peer was not added to a group Sort by state - + 以状态分类 Filter only connected - + @@ -6282,12 +6251,12 @@ at least one peer was not added to a group Mark all - 标记全部 + 标记全部 Mark none - + 取消标记 @@ -6389,12 +6358,12 @@ at least one peer was not added to a group <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;网络</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. - RS 广而告之:此处的消息会发给当前连接的所有好友。 + RetroShare 广而告之:此处的消息会发给当前连接的所有好友。 @@ -6405,12 +6374,12 @@ at least one peer was not added to a group Network graph - + 网络图表 Set your status message here. - + 在这里设置你的状态消息。 @@ -6418,7 +6387,7 @@ at least one peer was not added to a group Create new Profile - 新建配置 + 创建新的用户档案 @@ -6430,14 +6399,6 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters 所有字段都需要最少3个字符 - - Password (check) - 密码(检查) - - - [Required] Type the same password again here. - [必需]再次输入相同密码。 - Passwords do not match @@ -6451,145 +6412,145 @@ at least one peer was not added to a group Use BOB - + This password is for PGP - + 这是保护PGP密钥的密码。 You can use it now to create a new node. - + 你可以使用它来创建一个新的节点。 Node field is required with a minimum of 3 characters - + 节点字段需要最少3个字符 Failed to generate your new certificate, maybe PGP password is wrong! - + 新证书生成失败,可能您的 PGP 密码有误! Options - 选项 + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>请输入一个强壮的密码。您需要靠它保护您的 PGP 密钥。</p></body></html> <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + <html><head/><body><p>请移动鼠标以尽可能多地收集随机性。至少需要达到20%来创建你的节点密钥。</p></body></html> Standard node - + 标准节点 TOR/I2P Hidden node - + TOR/I2P 隐藏节点 <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + <html><head/><body><p>您的节点名称指定将在此计算机上运行的RetroShare实例。</p></body></html> Use existing profile - + Node name - + 节点名称 <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + <html><head/><body><p>用户档案文件名称通过网络识别您。</p><p>您的好友使用它来接受您的连接。</p><p>您可以在不同的计算机上创建具有</p><p>同一个用户档案的多个RetroShare节点。</p><p><br/></p></body></html> Export this profle - + 导出账户文件 <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p> 这里应该是洋葱的隐藏地址格式: xa76giaf6ifda7ri63i263.onion <br/>或者是I2P的格式 : [52 个字符].b32.i2p </p><p> 你必须通过建立Tor/I2P隐藏服务才能获得一个地址。</p><p> 当然你现在也可以留空,但是只有你正确配置了Tor/I2p地址过后才能正常工作。配置在选项-&gt;网络-&gt;隐藏服务配置。</p></body></html> <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + <html><head/><body><p>I在你聊天室,论坛,频道评论中发东西时需要使用身份。</p><p>他们也使用RetroShare的网络来收发邮件。你可以立即创建</p><p>签名身份,或在你需要的时候再创建。</p></body></html> Go! - + 开始! TextLabel - + Advanced options - + 高级选项 hidden address - + 隐藏地址 Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + 您的用户档案与PGP密钥相关联。RetroShare目前忽略DSA密钥。 <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>这是你的连接端口。</p><p>1024到65535之间的任何值</p><p>都可以。你可以在以后更改</p></body></html> Click to create your node and/or profile - + 点击创建你的节点或者用户档案 Export profile - + 导出用户档案 RetroShare profile files (*.asc) - + RetroShare用户档案(*.asc) Profile saved - + 用户档案已保存 @@ -6598,131 +6559,135 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + 您的用户档案保存成功 +并已加密 + +您现在可以将其复制到其他电脑中 +通过导入按钮载入 Profile not saved - + 用户档案未保存 Your profile was not saved. An error occurred. - + 您的用户档案未保存。有错误发生。 Import profile - + 导入用户档案 Create new profile and new Retroshare node - + 创建新的用户档案和RetroShare节点 Create new Retroshare node - + 新建 RetroShare 节点 Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + RetroShare用户档案(*.rsc );;所有文件 (*) Profile not loaded - + 用户档案未载入 Your profile was not loaded properly: - + 您的用户档案未能正确载入: New profile imported - + 新用户档案已导入 Your profile was imported successfully: - + 您的用户档案导入成功: The GXS nickname is too short. Please input at least %1 characters. - + GXS昵称太短,请输入至少%1个字符 The GXS nickname is too long. Please reduce the length to %1 characters. - + GXS昵称太长,请减少长度到%1个字符 PGP key pair generation failure - + PGP密钥构建失败 Profile generation failure - + 用户档案创建失败 Missing PGP certificate - + 丢失的 PGP 证书 @@ -6775,7 +6740,7 @@ and use the import button to load it Register retroshare:// as URL protocol - + 注册 retroshare:// 为 URL 协议 @@ -6785,22 +6750,22 @@ and use the import button to load it When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + 检查时,此实例接收新参数(如Rs链接或Rs文件),并屏蔽新的参数。 Use Local Server to get new arguments. - + 使用本地服务器获取新的参数。 <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + <html><head/><body><p>用安装包安装RetroShare,从……</p><p>/usr/share/applications/retroshare.desktop</p></body></html> !!!The RetroShare's desktop file is missing or wrong!!! - + !!!RetroShare桌面文件都是或者错误!!! @@ -6820,22 +6785,22 @@ and use the import button to load it You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + 为了安全,自动登录不推荐启用,你可以启用但是仅仅是自己的电脑上 Your RetroShare build has auto-login disabled. - + 你的RetroShare已经禁用了自动登录 @@ -6883,7 +6848,7 @@ and use the import button to load it <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6916,7 +6881,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:'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> @@ -6928,31 +6893,58 @@ 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> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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;"> +<p style=" 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;">由于各路由器的设置不尽相同,您需要知道您的路由器型号,在网上搜索具体的设置说明。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -6965,7 +6957,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-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;">Enjoy Retrosharing</span></p></body></html> @@ -6977,11 +6984,11 @@ 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: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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + @@ -7076,7 +7083,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + 他拥有多种功能,包括内置的聊天,传信等。 @@ -7089,62 +7096,62 @@ p, li { white-space: pre-wrap; } GroupBox - + 群组 ID - ID + ID Identity Name - + 身份名称 Destinaton - + 目的地 Data status - + 数据状态 Tunnel status - + 隧道状态 Stored data size - + 保存数据大小 Receive time (secs ago) - + 接收时间(多少秒之前) Sending time (secs ago) - + 发送时间(多少秒之前) Data hash - + 数据散列值 Branching factor - + 分支因子 Details - 详情 + 详情 @@ -7154,12 +7161,12 @@ p, li { white-space: pre-wrap; } Pending packets - + 待处理数据包 Unknown - 未知 + 未知 @@ -7167,22 +7174,22 @@ p, li { white-space: pre-wrap; } Managed keys - + 管理密钥 Routing matrix ( - + 路由矩阵( [Unknown identity] - + [位置身份] : Service ID = - + : 服务ID= @@ -7198,7 +7205,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + [未知] @@ -7234,72 +7241,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + 目录内容对好友可见(可以在右边看到文件列表) Directory content is NOT visible to friend nodes - + 目录内容对好友不可见 Directory can be searched anonymously - + 目录能被匿名搜索 Directory cannot be searched anonymously - + 目录不能被匿名搜索 Files can be accessed using anonymous tunnels - + 文件可以被用匿名路由的节点访问 Files can be accessed using anonymous & end-to-end encrypted tunnels - + 文件能被用匿名和端对端加密路由的节点访问 Files cannot be downloaded anonymously - + 文件不能被匿名下载 All friend nodes can see this directory - + 所有好友节点可以看到这个目录 Only visible to friend nodes in groups: %1 - + 仅对这个群组的节点可见:%1 Not visible to friend nodes - + 对好友节点不可见 Files can be downloaded (but not searched) anonymously - + 文件能被匿名下载(不能搜索) Files can be downloaded and searched anonymously - + 文件能被匿名下载搜索 Files can be searched (but not downloaded) anonymously - + 文件能被匿名搜索(不能下载) No one can anonymously access/search these files. - + 禁止任何人匿名访问或搜索此目录 @@ -7312,7 +7319,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + 用一个打开的标签隐藏标签栏 @@ -7320,7 +7327,7 @@ p, li { white-space: pre-wrap; } Share - + 分享 @@ -7330,12 +7337,12 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - + 分享频道发布权限 You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + 您可以允许您的好友在您的频道中发布,或将发布权限授予您的另一个RetroShare实例。 选择您希望允许在此频道中发布的好友。 注意:目前无法撤销频道发布权限。 @@ -7345,22 +7352,22 @@ p, li { white-space: pre-wrap; } Share forum admin permissions - + 共享论坛管理权限 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. - + 您可以通过与他们分享让您的好友知道您的论坛。 选择您要与之共享论坛的好友。 Share topic admin permissions - + 共享话题的管理权限 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. - + 您可以允许您的好友编辑主题。 在下面的列表中选择它们。 注意:无法撤销发布的管理员权限。 @@ -7388,12 +7395,12 @@ p, li { white-space: pre-wrap; } Sort Descending Order - + 按降序排列 Sort Ascending Order - + 按升序排列 @@ -7413,33 +7420,33 @@ p, li { white-space: pre-wrap; } Sort by Number of Posts - + Sort by Unread - + 按未读信息分类 You are admin (modify names and description using Edit menu) - + 你是管理员(修改名字和描述请用编辑菜单) You have been granted as publisher (you can post here!) - + 您已被授予发布权限(您可以在此发布!) Last Post - 最新贴文 + 最新贴文 Never - 从未 + 从不 @@ -7449,7 +7456,7 @@ p, li { white-space: pre-wrap; } Subscribe to download and read messages - + 订阅下载并阅读消息 @@ -7576,7 +7583,7 @@ p, li { white-space: pre-wrap; } <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;频道</h1> <p> 频道里你可以推送 (比如电影, 音乐) ,这些会传输到网络的各处</p> <p>您可以看到您的好友订阅的频道,并自动将订阅频道转发给您的好友。这促进了网络中的良好沟通。</p> <p>只有频道的创建者可以在该频道上发布。 网络中的其他对等体只能从其中读取,除非该信道是私有的。然而,您可以 与好友的RetroShare节点共享发布权限或阅读权限。</p> <p> 频道也能设置为匿名的,或附加到RetroShare身份, 以便读者可以在需要时联系您。</p> <p> 频道推送能保存 %1 days, 能同步%2天以内的消息,除非你修改了这个。</p> @@ -7596,7 +7603,7 @@ p, li { white-space: pre-wrap; } Select channel download directory - + 选择频道下载目录 @@ -7606,18 +7613,18 @@ p, li { white-space: pre-wrap; } Set download directory - + 设置下载目录 [Default directory] - + [默认目录] Specify... - 指定... + 指定... @@ -7640,7 +7647,7 @@ p, li { white-space: pre-wrap; } Open folder - + 打开文件夹 @@ -7660,17 +7667,17 @@ p, li { white-space: pre-wrap; } Checking - + 检查中 Are you sure that you want to cancel and delete the file? - + 您确定要取消和删除这些文件吗? Can't open folder - + 无法打开文件夹 @@ -7698,7 +7705,7 @@ p, li { white-space: pre-wrap; } Published - + 已发布 @@ -7736,7 +7743,7 @@ p, li { white-space: pre-wrap; } Update Channel - + 更新频道 @@ -7788,12 +7795,12 @@ p, li { white-space: pre-wrap; } New Comment: - + 新评论: Comment Value - + 评论值 @@ -7820,7 +7827,7 @@ p, li { white-space: pre-wrap; } Edit - 编辑 + @@ -7876,7 +7883,7 @@ p, li { white-space: pre-wrap; } 0 - 0 + 0 @@ -7902,7 +7909,7 @@ p, li { white-space: pre-wrap; } Comments - + @@ -7931,7 +7938,7 @@ p, li { white-space: pre-wrap; } Add new post - + @@ -7941,7 +7948,7 @@ p, li { white-space: pre-wrap; } Search channels - + 搜索频道 @@ -7956,12 +7963,12 @@ p, li { white-space: pre-wrap; } Message - 邮件 + 信息 Search Message - + 搜索消息 @@ -7971,7 +7978,7 @@ p, li { white-space: pre-wrap; } Search Filename - + 搜索文件名 @@ -7981,32 +7988,32 @@ p, li { white-space: pre-wrap; } Never - 从未 + 从不 Public - + 公共 Restricted to members of circle " - + 仅限于圈子的成员 Restricted to members of circle - + 仅限于圈子的成员 Your eyes only - + 只有你能看见 You and your friend nodes - + 你和你好友的节点 @@ -8021,28 +8028,28 @@ p, li { white-space: pre-wrap; } Show feeds - + 显示feeds Show files - + 显示文件 Administrator: - + 管理员: Last Post: - + 最新贴文 unknown - 未知 + 未知 @@ -8062,7 +8069,7 @@ p, li { white-space: pre-wrap; } Subscribers - + 订阅 @@ -8072,7 +8079,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + 贴文(相邻节点) @@ -8088,48 +8095,48 @@ p, li { white-space: pre-wrap; } Details - 详情 + Remove Item - + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8223,7 +8230,7 @@ p, li { white-space: pre-wrap; } Copy Comment - + @@ -8248,7 +8255,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8293,17 +8300,17 @@ before you can comment Update Forum - + 更新论坛 Add Forum Admins - + 添加论坛管理员 Select Forum Admins - + 选择论坛管理员 @@ -8382,7 +8389,7 @@ before you can comment In Reply to: - + 回复 @@ -8392,7 +8399,7 @@ before you can comment Forum Feed - + 论坛feed @@ -8425,7 +8432,7 @@ before you can comment New Thread - 新帖子 + @@ -8520,7 +8527,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> - + <p>订阅论坛将收集 您订阅的好友的 可用帖子。</p><p>之后,您可以从左侧的论坛列表的上下文菜单中取消订阅。</p> @@ -8585,54 +8592,54 @@ before you can comment [Banned] - + [被屏蔽的] [unknown] - + [未知] Public - + 公共 Restricted to members of circle " - + 仅限于圈子的成员" Restricted to members of circle - + 仅限于圈子的成员 Only friends nodes in group - + 仅分组中的好友节点 Your eyes only - + 只有你能看见 Distribution - + 传播范围 Anti-spam - + 反垃圾 [ ... Redacted message ... ] - + [ ... 丢失消息 ... ] @@ -8657,22 +8664,22 @@ 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>此消息的作者(ID为%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">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> - + <p><b><font color="#ff0000">您可以通过在人物标签中为该ID设置不同的评价来强制显示和转发邮件。</font></b></p> @@ -8685,7 +8692,7 @@ before you can comment RetroShare - Retroshare + RetroShare @@ -8715,127 +8722,129 @@ before you can comment New thread - + Read status - + 读取状态 Edit - 编辑 + Reply to author with private message - + 以私信方式回复作者 Give positive opinion - + 给出正面评价 This will block/hide messages from this person, and notify friend nodes. - + 这将会屏蔽或隐藏来自这个人的信息,而且会通知好友节点 Give neutral opinion - + 给出中立评价 Doing this, you trust your friends to decide to forward this message or not. - + 这个操作意味着你相信你的好友并决定转不转发这个消息 Give negative opinion - + 给出负面评价 Show author in people tab - + 在身份页显示作者 Author's reputation - + 作者的信誉 Anonymous/unknown posts forwarded if reputation is positive - + 如果匿名账户/未知节点评分是正的,允许发帖 Anonymous posts forwarded if reputation is positive - + 如果匿名账户评分是正的,允许发帖 Last post - + 最新贴文 Never - 从未 + 从不 Synchronization - + 同步 Storage - + 存储 Information for this identity is currently missing. - + 这个身份的信息现在丢失了 You have banned this ID. The message will not be displayed nor forwarded to your friends. - + 您已屏蔽此ID。 该消息将不会显示,也不会转发给您的好友。 You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + 您未曾设置过对此人的评价, +您的好友们也没有对此人有正面评判。 +防垃圾邮件规则阻止了向您的好友转发此消息。 Message will be forwarded to your friends. - + 信息将被转发给你的好友 (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + 你不能对不存在的消息指定作者 @@ -8860,17 +8869,17 @@ prevents the message to be forwarded to your friends. Forum name - + 论坛名称 Subscribers - + 订阅 Posts (at neighbor nodes) - + 贴文(相邻节点) @@ -8880,7 +8889,7 @@ prevents the message to be forwarded to your friends. By - + 操作者: @@ -8896,7 +8905,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;论坛</h1> <p>RetroShare 论坛看起来像互联网论坛,但他们以分散的方式工作</p> <p>您会看到您的好友订阅的论坛,并将订阅的论坛转发给 你的好友。这将自动促进网络中有趣的论坛的发展。</p> <p>论坛信息会保存%1 天并且会同步最后%2天的内容,除非你有另外的配置</p> @@ -9000,10 +9009,6 @@ prevents the message to be forwarded to your friends. Public 公开 - - Only For Your Friends - 仅限于好友 - Publish Signatures @@ -9067,19 +9072,19 @@ prevents the message to be forwarded to your friends. Spam-protection - + 垃圾信息保护 Comments: - 评论: + 评论: TextLabel - + 文本标签 @@ -9089,7 +9094,7 @@ prevents the message to be forwarded to your friends. Anti Spam: - + 反垃圾 @@ -9100,45 +9105,45 @@ prevents the message to be forwarded to your friends. Restricted to circle: - + 仅限于圈子 Limited to your friends - + 限于你的好友 Allowed - + 允许 Disallowed - + 不允许 Message tracking - + 消息追踪 PGP signature required - + 需要 PGP 签名 Never - 从未 + 从不 Only friends nodes in group - + 仅分组中的好友节点 @@ -9148,7 +9153,7 @@ prevents the message to be forwarded to your friends. PGP signature from known ID required - + 需要已知ID的 PGP 签名 @@ -9158,28 +9163,28 @@ prevents the message to be forwarded to your friends. Submit Group Changes - + 提交群组更改 Failed to Prepare Group MetaData - please Review - + 群组元数据准备失败-请查阅 Will be used to send feedback - + 将用于发送反馈 Owner: - + 拥有着: Set a descriptive description here - + 在此设置描述性介绍 @@ -9199,52 +9204,52 @@ prevents the message to be forwarded to your friends. <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + <html><head/><body><p>消息将在RetroShare成员所在圈子、还有订阅过的节点之间传播。 只有这些节点才能看到这个论坛/频道/贴文存在。 </p></body></html> Restricted to Circle - + 仅限于圈子 <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + <html><head/><body><p>消息只会分发给您所选好友节点的子集。 他们不会相互转发消息,而只能使用您自己的节点作为中继进行分发。</p></body></html> Restricted node group - + Posts permissions: - + 贴文权限 <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + <html><head/><body><p>此组合框允许您根据帖文所属的节点选择如何处理帖子。</p><p><span style=" font-weight:600;"> </span>全部允许: 所有帖文都被相同对待。</p><p><span style=" font-weight:600;">解除关注未签名ID的帖子</span>: 匿名ID需要0.4以上的声望才能被接收/转发。</p><p><span style=" font-weight:600;">解除关注未签名ID和未知节点的ID的帖子</span>: 匿名ID和被未知节点签名的ID将需要0.4以内的信誉点才能接收或者转发</p></body></html> All allowed - + 全部允许 Defavor unsigned IDs - + 取消收藏未签名ID Defavor unsigned IDs and IDs from unknown nodes - + 取消收藏来自未知节点的未签名ID @@ -9254,7 +9259,7 @@ prevents the message to be forwarded to your friends. Posts - + 贴文 @@ -9264,7 +9269,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + GXS ID 标签 @@ -9307,69 +9312,69 @@ prevents the message to be forwarded to your friends. Show Details - + 显示细节 Edit Details - + 编辑详情 Synchronise posts of last... - + 同步最后的贴文... 5 days - + 5 天 2 weeks - + 2 周 1 month - + 1 个月 3 months - + 3 个月 6 months - + 6 个月 1 year - + 1 年 Indefinitly - + 无限期 Store posts for at most... - + 最多保存贴文... Share publish permissions - + 共享发布权限 @@ -9427,43 +9432,43 @@ prevents the message to be forwarded to your friends. [Banned] - + [被屏蔽的] Authentication - + 验证 unknown Key - + 未知密钥 anonymous - + 匿名 Identity&nbsp;name - + 身份 名称 Identity&nbsp;Id - + 身份 ID Signed&nbsp;by - + 签名者 [Unknown] - + [未知] @@ -9484,107 +9489,107 @@ prevents the message to be forwarded to your friends. Router Statistics - 路由状态统计 + GroupBox - + ID - ID + Destination - 目标 + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - 已订阅 + Popularity - 活跃度 + Details - 详情 + Unknown Peer - 未知节点 + Pending data items - + Unknown - 未知 + Yes - + No - + @@ -9592,42 +9597,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + 已验证的路由 Tunnel ID: %1 - + 路由 ID:%1 from: %1 - + 来自: %1 to: %1 - + 到: %1 status: %1 - + 状态:%1 total sent: %1 bytes - + 总共发送: 1% bytes total recv: %1 bytes - + 总共收到: 1% bytes Unknown Peer - 未知节点 + 未知节点 @@ -9814,7 +9819,7 @@ prevents the message to be forwarded to your friends. Error Loading Help Contents: - + 载入帮助内容时发生错误: @@ -9829,21 +9834,37 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;"> 使用WOT认证节点和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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare 论坛</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare 项目主页</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare 团队博客</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare 开发组Twitter</span></a></li></ul></body></html> @@ -9865,18 +9886,31 @@ 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: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; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +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: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; font-weight:600;">RetroShare Translations:</span></p> +<p 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; font-weight:600;">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:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p 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; font-weight:600;">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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</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-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> @@ -9899,7 +9933,7 @@ p, li { white-space: pre-wrap; } Libraries - + @@ -9917,7 +9951,7 @@ p, li { white-space: pre-wrap; } Do you want Retroshare to open the link in your Web browser? - 你想让 Retroshare 用默认浏览器打开链接吗? + 你想让 RetroShare 用默认浏览器打开链接吗? @@ -9927,12 +9961,12 @@ p, li { white-space: pre-wrap; } 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不能用缺省浏览器打开链接。你可以复制网址到你的浏览器中去。 + RetroShare不能用网络浏览器打开选中链接。但是你仍然可以复制网址粘贴到你的浏览器中去。 Error opening help file: - + 打开帮助文件出错 @@ -9940,114 +9974,116 @@ p, li { white-space: pre-wrap; } Form - + 表单 Did you receive a certificate from a friend? - + 你收到好友的证书了吗? Add friends certificate - + 添加好友证书 Add certificate file - + 添加证书文件 Share your RetroShare Key - + 分享你的RetroShare密钥 ... - ... + ... The text below is your own Retroshare certificate. Send it to your friends - + 下面的文本是你的 RetroShare 证书。把它发送给你的好友 Open Source cross-platform, private and secure decentralized communication platform. - + 开源跨平台 +私有和去中心的通信平台 + Launch startup wizard - + 初次使用向导 Do you need help with RetroShare? - + Open Web Help - + 打开网络帮助 Copy your Cert to Clipboard - 复制您的证书到剪贴板 + 复制您的证书到剪贴板 Save your Cert into a File - 保存您的证书至文件 + 保存您的证书至文件 Send via Email - + 通过邮件发送 Invite via WebMail - + 通过网络邮件邀请 Recommend friends to each others - + 批量推荐好友 <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - RetroShare 邀请 + RetroShare邀请 Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - 您的证书已复到剪切板,请将其通过邮件或其他方式发送给您的好友 + 您的证书已复到剪切板,请将其通过邮件或其他方式粘贴发送给您的好友 Save as... - 另存为... + 另存为... RetroShare Certificate (*.rsc );;All Files (*) - RetroShare 证书 (*.rsc );;所有文件 (*) + RetroShare 证书 (*.rsc );;所有文件 (*) Home - 主页 + 首页 @@ -10056,32 +10092,37 @@ private and secure decentralized communication platform. Person Details - + 用户信息 Identity Info - + 身份信息 Friends votes: - + 好友投票 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </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: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-family:'Sans'; font-size:9pt;">你自己对身份的评价标注了你和你的好友节点的身份识别。 你自己意见会在好友之间分享,用来计算一个信誉评分:如果你对一个身份的评价是中立的,那么声誉分数是你好友评价的平均值。 如果没有,你的评价会影响分数。</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:9pt;">整体评分用于聊天大厅,论坛和频道,以决定针对每个特定身份采取的行动。 当总分低于-0.6时,身份会被禁止,这样可以阻止所有由此身份在论坛/频道发的消息的转发。 一些论坛还有特殊的反垃圾邮件标志,要求更高的声誉水平,使他们对不良意见更敏感。 被禁止的身份逐渐失去活动能力,最终消失(30天后)。</span></p></body></html> Owner node ID : - + 所有者节点名称: @@ -10091,101 +10132,101 @@ p, li { white-space: pre-wrap; } Owner node name : - + 所有者节点名称: Identity name : - + 身份名称 Identity ID : - + 身份 ID: Last used: - + 上次使用 Ban-option: - + 屏蔽选项 Auto-Ban all identities signed by the same node - + 自动屏蔽掉这个节点签名过的身份 Your Avatar Click here to change your avatar - + 你的头像 Send Invite - + 发送邀请 Positive votes - + 正面的投票 0 - 0 + 0 Negative votes - + 负面的投票 <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: - + 你的评价 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>过滤。</p></body></html> Overall: - + 总体: [unverified] - + [未验证] @@ -10200,97 +10241,97 @@ p, li { white-space: pre-wrap; } Identity owned by you, linked to your Retroshare node - + 你所拥有的身份,链接到你的RetroShare节点 Anonymous identity, owned by you - + 你拥有的匿名身份 Owned by a friend Retroshare node - + 好友节点拥有的 Owned by 2-hops Retroshare node - + 被2-hops RetroShare节点拥有 Owned by unknown Retroshare node - + 未知RetroShare节点拥有的 Anonymous identity - + 匿名身份 +50 Known PGP - + +50 已知 PGP +10 UnKnown PGP - + +10 位置 PGP +5 Anon Id - + +5 Anon Id positive - + 正面的 negative - + 负面的 No votes from friends - + 没有好友的赞 Negative (Banned by you) - + 负面的(被你屏蔽) Positive (according to your friends) - + 正面的(根据你的好友) Negative (according to your friends) - + 负面的(根据你的好友) Hi,<br>I want to be friends with you on RetroShare.<br> - + 你好,<br>我想与你成为 RetroShare 上的好友。<br> You have a friend invite - + 您有一条好友邀请 Respond now: - + 现在回应: Thanks, <br> - + 感谢, <br> @@ -10324,70 +10365,70 @@ p, li { white-space: pre-wrap; } Create new circle - + 新建圈子 Persons - + 个人 Votes - + Person - + 人物 Close - 关闭 + 关闭 Ban-option: - + 屏蔽选项 Auto-Ban all identities signed by the same node - + 自动屏蔽掉这个节点签名过的身份 Friend votes: - + 好友点赞 Positive votes - + 正面的投票 0 - 0 + 0 Negative votes - + 负面的投票 Usage statistics - + 使用统计 Circles - 圈子 + 圈子 @@ -10397,83 +10438,83 @@ p, li { white-space: pre-wrap; } Membership - 会员 + 会员身份 Public Circles - 公开圈 + 公开圈子 Personal Circles - 私人圈 + 私人圈子 Edit identity - 编辑身份 + 编辑身份 Delete identity - + 删除身份 Chat with this peer - + 与此节点聊天 Launches a distant chat with this peer - + 跟这个节点开启一个远程聊天 Owner node ID : - + 所有者节点名称: Identity name : - + 身份名称 () - + () Identity ID - + 身份ID Send message - + 发送消息 Identity info - + 身份信息 Identity ID : - + 身份 ID: Owner node name : - + 所有者节点名称: Create new... - + 创建新的... @@ -10483,57 +10524,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: - + 你的评价 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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>过滤。</p></body></html> Overall: - + 总体: @@ -10543,197 +10584,197 @@ p, li { white-space: pre-wrap; } ID - ID + ID Search ID - + 搜索 ID This identity is owned by you - + 这个身份被你是拥有者 My own identities - + 我所拥有的身份 My contacts - + 我的通讯录 Show Items - + 显示项目 Owned by myself - + 拥有者是我 Linked to my node - + 链接到我的节点 Other circles - + 其他圈子 Circles I belong to - + 我加入的圈子 Circle ID: - + 圈子ID Visibility: - + 可见性: Private (only visible to invited members) - + 私有的(仅对邀请过的成员可见) Only visible to full members of circle - + 仅限于圈子的成员可见 Public - + 公共 Your role: - + 你的角色: Administrator (Can edit invite list, and request membership). - + 管理员(可以编辑邀请列表并请求成员资格)。 User (Can only request membership). - + 用户(只能请求会员资格) Distribution: - + 分散: subscribed (Receive/forward membership requests from others and invite list). - + 订阅(接收/转发其他人的成员请求和邀请列表)。 unsubscribed (Only receive invite list). - + 未订阅(仅能收到邀请列表) Your status: - + 你的状态: Full member (you have access to data limited to this circle) - + 正式会员(您可以访问限于此圈子的数据) Not a member (do not have access to data limited to this circle) - + 不是会员(无权访问此圈子的数据) Identity ID: - + 身份 ID : Status: - 状态: + 状态: Full member - + 所有成员 Invited by admin - + 被管理员邀请 Subscription request pending - + 订阅请求待处理 unknown - 未知 + 未知 Invited - + 被邀请 Subscription pending - + 订阅申请中 Member - + 成员 Edit Circle - 编辑圈子 + 编辑圈子 See details - + 查看细节 Request subscription - + 请求订阅 Accept circle invitation - + 接受圈子邀请 Quit this circle - + 退出这个圈子 Cancel subscribe request - + 取消订阅请求 @@ -10741,294 +10782,297 @@ p, li { white-space: pre-wrap; } for identity - + 为ID Revoke this member - + 移除这个成员 Grant membership - + 授予会员资格 -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + +此身份使用了不安全的指纹(很可能因为版本过于老旧)。 +你应该用新的替换一下。 +此种身份将很快不再被支持。 [Unknown node] - + [未知节点] Unverified signature from node - + 来自节点的未验证签名 Unchecked signature - + 未检查的签名 [unverified] - + [未验证] Identity owned by you, linked to your Retroshare node - + 你所拥有的身份,链接到你的RetroShare节点 Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + 你拥有的匿名身份 Anonymous identity - + 匿名身份 Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + 发送邀请? Do you really want send a invite with your Certificate? - + 你真的要以你的证书发送邀请吗 Banned - + 已屏蔽 <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;身份</h1> <p>身份在此选项卡中,你可以创建/编辑伪匿名身份<b>, 和<b>圈子</b>。</b> <p>身份<b> 身份用于安全地识别你的数据:为聊天室,论坛和频道文章中的消息签名, 使用 RetroShare 内置电子邮件系统接收反馈,在频道发布文章后 发表评论,使用安全隧道聊天等。</p> <p>身份可任意由<b>你 RetroShare 节点的证书</b>签名。 签名的身份更容易信任,但很容易链接到你节点的 IP 地址。</b> <p><b>匿名身份</b>允许您与其他用户匿名交互。 他们不能 被欺骗,但是没有人可以证明谁真正拥有一个特定的身份。</p> <p><b>圈子</b>是通过网络远程共享的身份(匿名或签名)组,它们可 用于限制论坛,频道等的可见性等<p>。</p> 一个<b>圈子</b>可以受限于另一个圈子,从而限制它对该圈子成员的可见性,甚至限制圈子本身的可见性,这意味着只有被邀请的成员可以看到。 Unknown ID: - + positive - + 正面的 negative - + 负面的 No votes from friends - + 没有好友的赞 Negative (Banned by you) - + 负面的(被你屏蔽) Positive (according to your friends) - + 正面的(根据你的好友) Negative (according to your friends) - + 负面的(根据你的好友) <b>[No record in current session]</b> - + [当前会话中没有记录] Channels - 频道 + 频道 Forums - 论坛 + 论坛 Posted - 已发表 + 已发表 Chat - 聊天 + 聊天 Unknown - 未知 + 未知 [Unknown] - + [未知] Admin signature in service %1 - + 管理签名于服务&1 Admin signature verification in service %1 - + 管理签名验证于服务&1 Creation of author signature in service %1 - + 使用中的作者签名%1 Message/vote/comment - + 信息/点赞/评论 %1 in %2 tab - + %1 在 %2 标签页 Distant message signature validation. - + 远程消息签名验证。 Distant message signature creation. - + 创建远程信息签名 Signature validation in distant tunnel system. - + 遥远隧道系统签名验证。 Signature in distant tunnel system. - + 在远程隧道系统中的签名 Update of identity data. - + 更新身份数据。 Generic signature validation. - + 通用签名验证。 Generic signature. - + 通用签名。 Generic encryption. - + 通用加密。 Generic decryption. - + 通用解密。 Membership verification in circle %1. - + 圈子%1中的成员验证。 Add to Contacts - + 添加到通讯录 Remove from Contacts - + 从通讯录移除 Set positive opinion - + 设置正面的评价 Set neutral opinion - + 设置中立评价 Set negative opinion - + 设置负面的评价 Distant chat cannot work - + 远程聊天无法工作 Error code - + 错误代码 Hi,<br>I want to be friends with you on RetroShare.<br> - + 你好,<br>我想与你成为 RetroShare 上的好友。<br> @@ -11036,98 +11080,98 @@ These identities will soon be not supported anymore. People - + 人物 Your Avatar Click here to change your avatar - + 你的头像 Linked to neighbor nodes - + 链接到相邻节点 Linked to distant nodes - + 链接到远程节点 Linked to a friend Retroshare node - + 链接到好友的RetroShare节点 Linked to a known Retroshare node - + 链接到已知RetroShare节点 Linked to unknown Retroshare node - + 链接到未知RetroShare节点 Chat with this person - + 与此人聊天 Chat with this person as... - + 跟这个人聊天以 Distant chat refused with this person. - + 远程聊天拒绝此人 Last used: - + 上次使用 +50 Known PGP - + +50 已知 PGP +10 UnKnown PGP - + +10 位置 PGP +5 Anon Id - + +5 Anon Id Do you really want to delete this identity? - + 你真的要删除这个身份吗? Owned by - + 拥有者 Node name: - + 节点名称: Node Id : - + 节点Id: Really delete? - + 真的要删除? @@ -11239,7 +11283,7 @@ These identities will soon be not supported anymore. RM - + RM @@ -11250,32 +11294,33 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + 你的头像 Set Avatar - + 设置头像 Linked to your profile - + 链接到你的用户档案 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. - + 63/5000 +昵称太短。 请输入至少%1个字符。 The nickname is too long. Please reduce the length to %1 characters. - + 昵称太长。请将长度减少至%1个字符。 @@ -11293,7 +11338,7 @@ These identities will soon be not supported anymore. GXSId - + GXS ID @@ -11305,25 +11350,25 @@ These identities will soon be not supported anymore. GXS name: - + GXS 名字: PGP name: - + PGP 用户名 GXS id: - + GXS ID: PGP id: - + PGP id: @@ -11377,12 +11422,12 @@ These identities will soon be not supported anymore. Cannot save the image, invalid filename - + 无法保存图片,无效的文件名 Not an image - + 不是一张图片 @@ -11411,21 +11456,17 @@ These identities will soon be not supported anymore. Recommend in a message to... - + Share on channel... - + Share on forum... - - - - Recommend in a message to - 发消息推荐给 + @@ -11534,7 +11575,7 @@ RetroShare 将暂停对此目录的访问。 Open Messenger - + 打开管理 @@ -11569,7 +11610,7 @@ RetroShare 将暂停对此目录的访问。 &Quit - 退出(&Q) + &退出 @@ -11659,27 +11700,27 @@ RetroShare 将暂停对此目录的访问。 Statistics - + 统计 Show web interface - + 显示 Web 界面 The disk space in your - + 硬盘空间在你的 directory is running low (current limit is - + 目录运行很慢(现在的限制是 Really quit ? - + 真的要退出吗? @@ -11795,22 +11836,22 @@ RetroShare 将暂停对此目录的访问。 Address list: - + 地址列表: Recommend this friend - + 推荐这个好友 Set Text color - + 设置文本颜色 Set Text background color - + 设置文本背景颜色 @@ -11890,37 +11931,37 @@ RetroShare 将暂停对此目录的访问。 &Left - 左对齐(&L) + &左对齐 C&enter - 居中(&E) + &居中 &Right - 右对齐(&R) + &右对齐 &Justify - 两端对齐(&J) + &两端对齐 All addresses (mixed) - + 所有地址(混合) All people - + 所有人 My contacts - + 我的通讯录 @@ -12039,7 +12080,7 @@ Do you want to save message to draft box? RetroShare - Retroshare + RetroShare @@ -12065,112 +12106,112 @@ Do you want to save message to draft box? &File - 文件(&F) + &文件 &New - 新建(&N) + &新建 &Open... - 打开(&O)... + &打开... &Save - 保存(&S) + &保存 Save &As File - 另存为文件(&A) + &另存为文件 Save &As Draft - 另存为草稿(&A) + &另存为草稿 &Print... - 打印(&P)... + &打印... &Export PDF... - 导出为 PDF (&E)... + &导出为 PDF... &Quit - 退出(&Q) + &退出 &Edit - 编辑(&E) + &编辑 &Undo - 撤销(&U) + &撤销 &Redo - 重做(&R) + &重做 Cu&t - 剪切(&T) + &剪切 &Copy - 复制(&C) + &复制 &Paste - 粘贴(&P) + &粘贴 &View - 查看(&V) + &查看 &Contacts Sidebar - 联系人侧边栏(&C) + &联系人侧边栏 &Insert - 插入(&I) + &插入 &Image - 图像(&I) + &图像 &Horizontal Line - 水平分割线(&H) + &水平分割线 &Format - 格式(&F) + &格式 Details - 详情 + 详情 @@ -12223,17 +12264,17 @@ Do you want to save message ? Hi,<br>I want to be friends with you on RetroShare.<br> - + 你好,<br>我想与你成为 RetroShare 上的好友。<br> You have a friend invite - + 您有一条好友推荐 Respond now: - + 现在回应: @@ -12248,73 +12289,73 @@ Do you want to save message ? Friend Nodes - + 好友节点 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> - + 感谢, <br> Distant identity: - + 远程身份 [Missing] - + [丢失] Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + 请创建一个身份以签署远程信息,或从目标列表中删除远处的节点。 Node name & id: - + 节点名和id: @@ -12337,7 +12378,7 @@ Do you want to save message ? Accept encrypted distant messages from - + 接受加密的远程聊天从 @@ -12399,14 +12440,10 @@ Do you want to save message ? Edit Tag 标记标签 - - Message - 邮件 - Distant messages: - + 远程信息: @@ -12416,7 +12453,7 @@ Do you want to save message ? Mail - + @@ -12480,7 +12517,7 @@ Do you want to save message ? Send Invite - + 发送邀请 @@ -12530,12 +12567,12 @@ Do you want to save message ? Send invite? - + 发送邀请? Do you really want send a invite with your Certificate? - + 你真的要以你的证书发送邀请吗 @@ -12566,12 +12603,12 @@ Do you want to save message ? Hide the attachment pane - + 隐藏附件窗格 Show the attachment pane - + 显示附件窗格 @@ -12579,7 +12616,7 @@ Do you want to save message ? New Message - 新邮件 + 新信息 @@ -12683,17 +12720,17 @@ Do you want to save message ? &File - 文件(&F) + &文件 Save &As File - 另存为文件(&A) + &另存为文件 &Print... - 打印(&P)... + &打印... @@ -12703,7 +12740,7 @@ Do you want to save message ? &Quit - 退出(&Q) + &退出 @@ -12995,7 +13032,7 @@ 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>远程消息保留在发件箱中,直到收到确认。</p> <p>通常,你可以使用邮件通过粘贴文件链接向好友推荐文件,或者将好友节点推荐给其他的好友节点,来加强你的网络,或向频道所有者发送反馈。</p> @@ -13092,7 +13129,7 @@ Do you want to save message ? This message goes to a distant person. - + 这条消息发送到了远程用户 @@ -13116,22 +13153,22 @@ Do you want to save message ? This message was signed and the signature checks - + 此信息已签名,且签名已检查 This message was signed but the signature doesn't check - + 此信息已签名,但签名未检查 This message comes from a distant person. - + 这条消息来自于远程用户 Mail - + 邮件 @@ -13157,17 +13194,17 @@ Do you want to save message ? Paste as plain text - + 粘贴纯文本 Spoiler - + 遮蔽 Select text to hide, then push this button - + 选择要隐藏的文本,然后按下此按钮 @@ -13185,7 +13222,7 @@ Do you want to save message ? Send Invite - + 发送邀请 @@ -13221,12 +13258,12 @@ Do you want to save message ? from - 自从 + 来自 Reply to invite - + 回复邀请 @@ -13256,12 +13293,12 @@ Do you want to save message ? Send invite? - + 发送邀请? Do you really want send a invite with your Certificate? - + 你真的要以你的证书发送邀请吗 @@ -13334,22 +13371,6 @@ Do you want to save message ? Name 名称 - - Did I authenticated peer - 我对节点的信任 - - - Did I sign his PGP key - 我是否曾为此PGP密钥签名 - - - Cert Id - 证书 ID - - - Last used - 上次使用 - Clear @@ -13403,12 +13424,12 @@ Do you want to save message ? Create New Profile - 新建身份配置 + 创建新的用户档案 Create a new Profile - 创建一个新身份配置 + 创建新的用户档案 @@ -13427,7 +13448,7 @@ Do you want to save message ? - 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. @@ -13469,52 +13490,6 @@ For security, your keyring was previously backed-up to file Cannot create backup file. Check for permissions in pgp directory, disk space, etc. 无法创建备份文件。请检查您pgp文件夹的权限、磁盘可用空间等。 - - Personal signature - 我已签名背书 - - - PGP key signed by you - 您签名过的PGP密钥 - - - Marginally trusted peer - 有限信任 - - - Fully trusted peer - 完全信任 - - - Untrusted peer - 不信任 - - - Last hour - 一小时前 - - - Today - 今天 - - - Never - 从未 - - - %1 days ago - %1 天前 - - - has authenticated you. -Right-click and select 'make friend' to be able to connect. - 已对您的公钥签名。 -点击右键选择 '加为好友' 可连接。 - - - yourself - 我自己 - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -13523,34 +13498,36 @@ Right-click and select 'make friend' to be able to connect. Export/create a new node - + 导出或者新建节点 Trusted keys only - + 仅信任的节点 Search name - + 搜索名称 Search peer ID - + 搜索节点 ID Profile details... - + 用户详情 Key removal has failed. Your keyring remains intact. Reported error: - + 密钥删除失败。您的钥匙环未被修改 + +报告错误: @@ -13581,7 +13558,7 @@ Reported error: Freeze - + 冻结 @@ -13617,7 +13594,7 @@ Reported error: Log entries - + 日志条目 @@ -13637,22 +13614,29 @@ Reported error: Newest on top - + 新的在上面 Oldest on top - + 旧的在上面 <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> Log - + 日志 @@ -13691,7 +13675,7 @@ Reported error: Chat Room - + 聊天室 @@ -13723,37 +13707,37 @@ Reported error: Ip security - + IP安全 Friend Connected - 好友已连接 + 好友已连接 Circles - 圈子 + Links - + 链接 Mails - + 邮件 Chats - + 聊天室 New Message - 新邮件 + 新信息 @@ -13773,32 +13757,32 @@ Reported error: Chat rooms - + 聊天室 Chat Rooms - + 聊天室 Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - 区分大小写 + 区分大小写 @@ -13838,7 +13822,7 @@ 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;通知</h1> <p>  RetroShare会通知您网络中发生了什么。 根据您的使用情况,您可能想启用或禁用某些 通知。此页面就是专门为通知设计的!</p> @@ -13868,27 +13852,27 @@ Reported error: Disable All Toasters - + 禁用所有弹出消息 Disable All Toaster temporarily - + 临时禁用所有弹出消息 Feed - 订阅 + 日志订阅 Systray - + 系统托盘 Count all unread messages - + 计数所有未读信息 @@ -13896,17 +13880,17 @@ Reported error: Passphrase required - + 需要密码 You need to sign your node's certificate. - + 你需要对你节点证书签名 You need to sign your forum/chatrooms identity. - + 你需要签署你的论坛/聊天室的身份。 @@ -13916,7 +13900,7 @@ Reported error: Please enter your Retroshare passphrase - + 请输入您的RetroShare密码 @@ -13972,7 +13956,7 @@ Reported error: 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). - + 为了正常使用聊天大厅,您的电脑时间一定要正确。如果出现下面状况请检查时间(侦测到您与好友之间可能存在几分钟的时间偏差)。 @@ -14007,11 +13991,11 @@ Reported error: - 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 - 使用下拉列表快速切换RS工作模式 + 使用下拉列表快速切换RetroShare工作模式 停止匿名传输: 关闭文件转发 游戏模式: 25% s默认流量,待实现功能:减少弹出窗口 低流量: 10% s默认流量,待实现功能:暂停所有文件传输 @@ -14019,13 +14003,13 @@ Reported error: <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -14033,42 +14017,42 @@ Reported error: Dialog - + 对话 Profile info - + 用户信息 Name : - + 名字: 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> - + <html><head/><body><p>PGP密钥指纹是一个被认为是不可伪造的PGP密钥。 为了确保您正在处理正确的密钥,请比较指纹</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> - + <html><head/><body><p> 信任级别是一个可选的本地参数,您可以设置此参数,以便记住关于给定PGP密钥的选项。 它不被用于授权连接。 </p></body></html> Unset - + 未设置 @@ -14078,7 +14062,7 @@ Reported error: No trust - + 不信任 @@ -14098,46 +14082,50 @@ Reported error: This profile has signed your own profile key - + 节点是否对我的PGP密钥签名 Key signatures : - + 密钥签名。 <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;">签署好友的钥匙是表达你对这个好友,给你的其他好友的信任的一种方式。 下面的签名加密地证明所列出的密钥的所有者将当前的PGP密钥识别为真实的</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;"> +</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;">签署好友的钥匙是表达你对这个好友,给你的其他好友的信任的一种方式。 它可以帮助他们决定是否允许基于您自己的信任的密钥进行连接。 签署密钥是绝对可选的,不能撤销,所以请做明智的决定。</span></p></body></html> Sign this key - + 为此密钥签名 PGP key - + PGP 密钥 These options apply to all nodes of the profile: - + 这些选项将应用到这个用户的所有节点 <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;">签署好友的钥匙是表达你对这个好友,给你的其他好友的信任的一种方式。 它可以帮助他们决定是否允许基于您自己的信任的密钥进行连接。 签署密钥是绝对可选的,不能撤销,所以请做出明智的选择.</span></p></body></html> @@ -14147,32 +14135,32 @@ p, li { white-space: pre-wrap; } <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>如果要拒绝与此密钥验证的节点的连接,请单击此处。</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> - + <html><head/><body><p>如果希望你的节点接受连接到由此 PGP 密钥认证的 RetroShare 节点,请单击此项。当与某人交换你的 RetroShare 证书时,这是自动完成的。为了成为好友,最好交换证书,而不是从给定的密钥接受连接,因为证书还包含有用的连接信息(IP,DNS,SSL id 等)。</p></body></html> Accept connections - + 接受连接 Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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> - + 该按钮将切换包含在PGP密钥的ascii显示中的签名。 在其他选项卡中查看有关签名的注释。 @@ -14182,53 +14170,53 @@ p, li { white-space: pre-wrap; } Options - 选项 + 选项 <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. This setting is applied to all locations of the same node.</p></body></html> - + <html><head/><body><p align="justify">RetroShare会定期检查您的好友列表中的可浏览文件与您的传输匹配,以建立直接传输。 在这种情况下,您的好友知道您正在下载文件.</p><p align="justify">要防止此行为(仅适用于此好友),请取消选中此框。 如果您明确要求,您仍然可以执行直接传输。 从你好友的文件列表下载。 此设置应用于同一节点的所有位置.</p></body></html> Use as direct source, when available - + 可用时,作为直连数据源。 <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. Applied to all locations of the same node.</p></body></html> - + <html> <head /> <body> <p>此选项允许您自动下载来自此节点的消息中推荐的文件。 这可以用于例如在您自己的节点之间发送文件。 应用于同一节点的所有位置。</ p> </ body> </ html> Auto-download recommended files from this node - + 自动从这个节点下载推荐文件 <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. Applies to all locations of the same node.</p></body></html> - + <html> <head /> <body> <p>如果连接地址不在白名单中,则具有此选项的对等人无法连接。 这样可以防止流量转发攻击。 当被使用时,被拒绝的对方将被“安全馈送项目”报告。 在新闻Feed部分。 从那里,您可以对其IP进行白名单/黑名单。 适用于同一节点的所有位置。</ p> </ body> </ html> Require white list clearance - + 需要清空白名单 Max upload speed (0=unlimited) - + 上传速度上限(0=无限制) Max download speed (0=unlimited) - + 下载速度上限(0=无限制) kB/s - + kB/s @@ -14255,23 +14243,25 @@ p, li { white-space: pre-wrap; } Warning: In your File-Transfer option, you select allow direct download to Yes. - + +警告:你在文件传输选项中开启了直接下载 Warning: In your File-Transfer option, you select allow direct download to No. - + +警告:你在文件传输选项中关闭了直接下载。 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. - + 信任级别是表达您对此密钥的信任的一种方式。 它不被软件使用,也不是共享的,仅用于方便记住好/坏的密钥。 Your trust in this peer is ultimate - + 您对此节点完全信任。 @@ -14291,22 +14281,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. This key has signed your own PGP key - + 这个密钥已经签署了你自己的PGP密钥 <p>This PGP key (ID= - + <p>这个PGP密钥(ID= You have chosen to accept connections from Retroshare nodes signed by this key. - + 您已经选择接受由此密钥签名的RetroShare节点的连接。 You are currently not allowing connections from Retroshare nodes signed by this key. - + 您目前不允许通过此密钥签名的RetroShare节点进行连接。 @@ -14321,22 +14311,22 @@ Warning: In your File-Transfer option, you select allow direct download to No. You haven't set a trust level for this key. - + 你还没有对这个密钥设置信任等级 Retroshare profile - + RetroShare用户档案 This is your own PGP key, and it is signed by : - + 这是你的密钥,签名人是: This key is signed by : - + 公钥的签名者: @@ -14413,7 +14403,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - + @@ -14443,7 +14433,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - + @@ -14499,53 +14489,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + 人物 Drag your circles or people to each other. - + 拖动你的圈子或者人物进行添加人物。 Internal - + 内部 Chat with this person - + 与此人聊天 Chat with this person as... - + 跟这个人聊天以 Send message to this person - + 给这个人发送信息 Person details - + 用户信息 Distant chat cannot work - + 远程聊天无法工作 Distant chat refused with this person. - + 远程聊天拒绝此人 Error code - + 错误代码 @@ -14553,68 +14543,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + 人物 Reputation - 信誉 + 信誉 <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + <html><head/><body><p> 如果没有设置你通讯录里的所有人都会自动获的正面的评价,这将自动增长使用过的节点的信誉点 </p></body></html> automatically give "Positive" opinion to my contacts - + 给我的联系人自动给出正面的评价 Difference in votes (+/-) to rate an ID negatively: - + 决定评价是否负面的票数差异(+/-): <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>当一个身份获得比正面投票更多的负面票,它从&quot;中立&quot;变为&quot;负面(根据你的好友)&quot;。默认情况下,一票之差就够了,但是你可以选择一个较大的数字来避免这种情况的产生。</p></body></html> <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>如果一个身份获正面评价比负面的多,将会由 &quot;中立&quot; 变为 &quot;正面 (通过你的好友)&quot;。 默认情况下,一票之差就够了,但是你可以选择一个较大的数字来避免这种情况的产生。</p></body></html> Difference in votes (+/-) to rate an ID positively: - + 决定评价是否正面的票数差异(+/-): Delete banned identities after (0 means indefinitely): - + 删除屏蔽掉的身份在这之后(0 无限期) Reset reputation of banned identities after (0 means never): - + 重设屏蔽身份的信誉点在这之后(0 永不) <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + <html><head/><body><p>禁止身份不被认证,因此不能激活。 会在一段时间后自动删除。</p></body></html> days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + <html><head/><body><p>为防止已删除的被屏蔽 ID 因为在论坛或频道中使用而被拒绝,被禁止的身份将被保留在列表中,一段时间后,它们会被从禁止列表中"清除" ,如果在论坛、聊天室等中使用,将会重新作为未被屏蔽的 ID 被下载。</p></body></html> @@ -14705,7 +14695,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14718,7 +14708,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14731,7 +14721,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14878,7 +14868,7 @@ requesting to edit it! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -14947,37 +14937,37 @@ p, li { white-space:pre-wrap;} base folder %1 doesn't exist, default load failed - + 基本文件夹%1不存在,默认加载失败 Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + 错误:找不到名称为'%1'的插件 Error: can't copy %1 to %2 - + 错误: 不能复制%1到%2 @@ -15000,7 +14990,7 @@ p, li { white-space:pre-wrap;} Widget for plugin %1 not found on plugins frame - + 插件%1的小部件在插件框架上找不到 @@ -15018,12 +15008,12 @@ p, li { white-space:pre-wrap;} Plugin disabled. Click the enable button and restart Retroshare - + 插件已禁用,点击启用按钮重启 RetroShare 后启用。 [disabled] - + [禁用] @@ -15037,7 +15027,7 @@ p, li { white-space:pre-wrap;} [loading problem] - + [加载问题] @@ -15083,7 +15073,7 @@ 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;插件</h1> <p>插件从下列列表中目录中加载。</p> <p> 由于安全原因,接受的插件自动加载 直到主RetroShare可执行文件或插件库更改。 在 这种情况下,用户需要再次确认。 程序启动后,您可以通过单击“启用”按钮手动启用插件, 然后重新启动RetroShare。</p> <p>如果要开发自己的插件,请联系开发人员团队, 他们将乐意帮助您!</p> @@ -15157,29 +15147,25 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - - The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - 与您聊天的节点已经终止了加密聊天隧道。您现在可以关闭此聊天窗口了。 - Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + @@ -15207,7 +15193,7 @@ malicious behavior of crafted plugins. RetroShare - Retroshare + RetroShare @@ -15222,7 +15208,7 @@ malicious behavior of crafted plugins. You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + 您正在提交一个链接。 成功提交的关键是有趣的内容和描述性标题。 @@ -15232,12 +15218,12 @@ malicious behavior of crafted plugins. Submit a new Post - + 提交新贴文 Please add a Title - + 请添加标题 @@ -15247,7 +15233,7 @@ malicious behavior of crafted plugins. Link - + 链接: @@ -15260,12 +15246,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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;已发表</h1> <p>已发表服务允许你共享互联网链接,这些链接在 RetroShare 节点,如论坛和 频道中传播</p> <p>链接可以被订阅的用户评论。 推广系统也给机会 推荐重要的链接。</p> <p>链接被共享时没有限制。 点击它们时要小心。</p> <p>发布的链接保留%1天,并且会同步最近%2天的内容,除非你更改此设置。</p> Create Topic - + 创建话题 @@ -15290,7 +15276,7 @@ malicious behavior of crafted plugins. Links - + 链接: @@ -15323,7 +15309,7 @@ malicious behavior of crafted plugins. Update Topic - + 更新主题 @@ -15336,7 +15322,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + 订阅已发布的 @@ -15352,7 +15338,7 @@ malicious behavior of crafted plugins. Posted Description - + 贴文描述 @@ -15362,7 +15348,7 @@ malicious behavior of crafted plugins. New Posted - + 新建贴文 @@ -15375,7 +15361,7 @@ malicious behavior of crafted plugins. 0 - 0 + 0 @@ -15398,12 +15384,12 @@ malicious behavior of crafted plugins. Vote up - + Vote down - + @@ -15423,12 +15409,12 @@ malicious behavior of crafted plugins. New Comment: - + 新评论: Comment Value - + 评论值 @@ -15501,7 +15487,7 @@ malicious behavior of crafted plugins. Submit a new Post - + 提交新贴文 @@ -15526,7 +15512,7 @@ malicious behavior of crafted plugins. 1-10 - 1-10 + 1-10 @@ -15536,19 +15522,15 @@ malicious behavior of crafted plugins. Tabs 标签 - - Posted - 已发表 - Open each topic in a new tab - + 在新标签页打开每个话题 Links - + @@ -15574,7 +15556,7 @@ malicious behavior of crafted plugins. &Print... - 打印(&P)... + &打印... @@ -15594,7 +15576,7 @@ malicious behavior of crafted plugins. &Close - 关闭(&C) + &关闭 @@ -15603,20 +15585,20 @@ malicious behavior of crafted plugins. Profile Manager - 身份配置管理器 + 用户档案管理器 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + @@ -15631,7 +15613,7 @@ p, li { white-space: pre-wrap; } GID - + GID @@ -15711,17 +15693,17 @@ and use the import button to load it Full keys available in your keyring: - + 在您的钥匙环中所有密钥可用 Export selected key - + 导出选中的密钥 You can use it now to create a new node. - + 你可以使用它来创建一个新的节点。 @@ -15740,7 +15722,7 @@ and use the import button to load it Profile Manager - 身份配置管理器 + 用户档案管理器 @@ -15811,7 +15793,7 @@ and use the import button to load it RetroShare - Retroshare + RetroShare @@ -15883,7 +15865,7 @@ and use the import button to load it Post Pulse to Wire - + 向wire发刺探包 @@ -15924,53 +15906,37 @@ and use the import button to load it Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - 点击添加此RS证书至您的PGP密钥环中,同时打开建立好友向导。 - - - Add file - 添加文件 - - - Add files - 添加文件 - - - Do you want to process the link ? - 您是否要打开此链接? - - - Do you want to process %1 links ? - 您确实要打开 %1 个链接? + 点击添加此RetroShare证书至您的PGP密钥环中,同时打开建立好友向导。 Warning: Retroshare is about to ask your system to open this file. - + 警告:RetroShare即将要求您的系统打开此文件 Before you do so, please make sure that this file does not contain malicious executable code. - + 在此之前,请确保该文件不包含恶意可执行代码。 Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + @@ -16085,47 +16051,47 @@ and open the Make Friend Wizard. Posted not found - + 贴文未找到 Posted message not found - + 发送的信息未找到 Posted messages not found - + 贴文未找到 Recipient not accepted - + 收件人不接受 Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + 收件人不接受 @@ -16140,7 +16106,7 @@ and open the Make Friend Wizard. Chat room not found - + @@ -16217,7 +16183,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace RetroShare - Retroshare + RetroShare @@ -16237,36 +16203,36 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + @@ -16279,7 +16245,7 @@ The error reported is:" Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - 系统中另一个使用相同的配置文件的 RetroShare 正在运行。请先关闭此实例。 + 系统中另一个使用相同的用户档案的 RetroShare 正在运行。请先关闭此实例。 被锁定文件: @@ -16288,7 +16254,7 @@ The error reported is:" An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - Retroshare 尝试锁定 Lock 文件时发生意外错误 + RetroShare 尝试锁定 Lock 文件时发生意外错误 Lock 文件: @@ -16300,20 +16266,12 @@ The error reported is:" Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - - - - Tunnel is pending... - 等待隧道建立... - - - Secured tunnel is working. You can talk! - 安全通道工作正常。您可以聊天了! + @@ -16329,22 +16287,22 @@ Reported error is: Click to send a private message to %1 (%2). - + 点击发私信给%1 (%2) %1 (%2, Extra - Source included) - + %1 (%2, 包括额外的源) Click this link to send a private message to %1 (%2) - + 点击这个链接发私信给%1 (%2) RetroShare Certificate (%1, @%2) - + RetroShare 证书(%1, @%2) @@ -16354,98 +16312,98 @@ Reported error is: TR up - + 上行流量 TR dn - + 下行流量 Data up - + 数据上传 Data dn - + 数据下载 Data forward - + 数据转发 You appear to have nodes associated to DSA keys: - + 您似乎有与DSA密钥关联的节点: DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + 当前 RetroShare 的版本不支持 DSA 密钥。所有这些地点都将无法使用。我们很抱歉会这样。 enabled - + 启用 disabled - + 禁用 Move IP %1 to whitelist - + 添加%1至白名单 Whitelist entire range %1 - + 白名单的条目范围%1 whitelist entire range %1 - + 白名单的条目范围%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 天前 @@ -16456,174 +16414,176 @@ Reported error is: Subject: - 主题: + 主题: Participants: - + 参加者: Auto Subscribe: - + 自动订阅: Id: - + ID: Security: no anonymous IDs - + +安全:没有匿名ID Join chat room - + 加入聊天室 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文件! Indefinitely - + 无限期 5 days - + 5 天 2 weeks - + 2 周 1 month - + 1 个月 2 month - + 2 个月 6 month - + 6 个月 1 year - + 1 年 days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - 未知 + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16638,12 +16598,12 @@ Security: no anonymous IDs <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> @@ -16766,10 +16726,10 @@ 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: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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16814,7 +16774,7 @@ p, li { white-space:pre-wrap;} RetroShare Page Display Style - + RetroShare 页面显示样式 @@ -16824,21 +16784,21 @@ p, li { white-space:pre-wrap;} 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -16853,8 +16813,8 @@ 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:8.25pt; font-weight:400; font-style:normal;"> -<p 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> @@ -16915,12 +16875,12 @@ p, li { white-space:pre-wrap;} Universal - + 统一的 If checked, the share is anonymously shared to anybody. - + 检查完毕后,这个分享会匿名地分享给任何人。 @@ -16933,12 +16893,15 @@ p, li { white-space:pre-wrap;} * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + 请决定这个文件夹是否 +* 可达性: 通过网络匿名分享 (包括你的好友) +* 可浏览性: 可以被你的好友浏览 +* 统一性: 都可以 Do you really want to stop sharing this directory ? - 您确定要停止此文件夹的共享? + 您确定要停止此文件夹的共享? @@ -16982,52 +16945,52 @@ p, li { white-space:pre-wrap;} Allowed by default - + 默认允许 Denied by default - + 默认拒绝 Enabled for this peer - + 对这个节点启用 Disabled for this peer - + 对这个节点禁用 Enabled by remote peer - + 被远程节点启用 Disabled by remote peer - + 被远程节点禁用 Globally switched Off - + 全局关闭 Service name: - + 服务名称 Peer name: - + 节点名称 Peer Id: - + 节点 ID @@ -17035,17 +16998,17 @@ p, li { white-space:pre-wrap;} Tree View Options - + 树状视图选项 Show column... - + 显示列 [no title] - + [无标题] @@ -17063,74 +17026,7 @@ p, li { white-space:pre-wrap;} <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - - - - - RelayPage - - Enable Relay Connections - 启用中继连接 - - - Use Relay Servers - 使用中继服务器 - - - Relay options - 中继选项 - - - Number - 数量 - - - Bandwidth per link - 每连接带宽 - - - Total Bandwidth - 总带宽 - - - Friends - 好友 - - - kB/s - kB/s - - - Friends of Friends - 好友的好友 - - - General - 常规 - - - Total: - 总计: - - - Relay Server Setup - 中继服务器设置 - - - Add Server - 添加服务器 - - - Server DHT Key - 服务器 DHT 密钥 - - - Remove Server - 删除服务器 - - - Relay - 中继 + <strong>下载:</strong> 0.00 (kB/s) | <strong>上传:</strong> 0.00 (kB/s) @@ -17138,7 +17034,7 @@ p, li { white-space:pre-wrap;} Download... - + @@ -17148,11 +17044,7 @@ p, li { white-space:pre-wrap;} Recommend in a message to... - - - - Recommend in a message to - 发邮件推荐给 + @@ -17165,22 +17057,22 @@ p, li { white-space:pre-wrap;} [All friend nodes] - + [全部好友节点] Only - + NEW - + 新文件夹 This node hasn't sent any directory information yet. - + 此节点尚未发送任何目录信息。 @@ -17188,22 +17080,22 @@ p, li { white-space:pre-wrap;} IP address not checked - + IP 地址未检测 IP address is blacklisted - + IP 地址被加入黑名单 IP address is not whitelisted - + IP 地址未被加入白名单 IP address accepted - + IP 地址已接受 @@ -17221,28 +17113,28 @@ p, li { white-space:pre-wrap;} Remove IP from whitelist - + 从白名单移除 IP Add IP to blacklist - + 添加 IP 到黑名单 Remove IP from blacklist - + 从黑名单移除 IP Only IP - + 仅 IP Entire range - + 整个范围 @@ -17250,32 +17142,32 @@ p, li { white-space:pre-wrap;} Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - 覆盖 + Merge - + Cancel - + @@ -17298,12 +17190,12 @@ p, li { white-space:pre-wrap;} Destination: - + Right click to change download directory - + @@ -17339,7 +17231,7 @@ p, li { white-space:pre-wrap;} 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. 一些文件名或目录名包含无效字符。 <b>",|,/,\,&lt;,&gt;,*,?</b> 等字符将被“_”替换。 @@ -17348,7 +17240,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Selected files : - + 已选择的文件: @@ -17359,26 +17251,22 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>将选择的文件一个一个添加到合集</p><p>选择的目录一样</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Enter&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> 添加选择的文件到合集。</p><p> 如果选择的是文件,那文件的子集也会被添加</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&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> 在合集里面创建一个新文件夹。</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> Remove Duplicate - + 删除重复条目 @@ -17388,69 +17276,69 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection Editor - + 合集编辑者 File Path - + 文件路径 File Count - + 文件数量 Real Size: Waiting child... - + 真实大小:等待子集... Real File Count: Waiting child... - + 文件数量:等待子集... This is a directory. Double-click to expand it. - + 这是一个目录,双击展开 Download files - + Specify... - 指定... + Choose directory - 选择目录 + Real Size=%1 - + 实际大小=%1 Real File Count=%1 - + 实际文件数=%1 Save Collection File. - + 保存集合文件 What do you want to do? - + 你想要做什么? @@ -17460,47 +17348,47 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Merge - + 合并 Warning, selection contains more than %1 items. - + 警告,选择包含超过%1项。 Do you want to remove them and all their children, too? - + 你想删除他们和他们的子文件夹吗? Do you want to remove this file from the list? - + 你想从列表里移除这个文件吗? New Directory - + 新目录 Enter the new directory's name - + 输入新目录的名字 <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>更改资源集合将要被保存到的文件。</p><p>如果选择一个已有文件,它将被合并。</p></body></html> 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> @@ -17543,15 +17431,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace If you believe it is correct, remove the corresponding line from the file and re-open it with Retroshare. 文件包含字串 "%1" 因此不是有效的集合文件。 -如果您认为它是有效文件请从文件中删除这一行,然后用 Retroshare 重新打开。 - - - Overwrite - 覆盖 - - - Cancel - 取消 +如果您认为它是有效文件请从文件中删除这一行,然后用 RetroShare 重新打开。 @@ -17560,128 +17440,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - 名称 + Size i.e: file size - 大小 + Completed - 已完成 + Speed i.e: Download speed - 速度 + Progress / Availability i.e: % downloaded - 进度/可用块 + Sources i.e: Sources - 来源 + Status - 状态 + Speed / Queue position - 速度/队列位置 + Remaining - 剩余 + Download time i.e: Estimated Time of Arrival / Time left - 下载时间 + Hash - + Last Time Seen i.e: Last Time Receiced Data - 上次发现 + Path i.e: Where file is saved - 路径 + Failed - 失败 + Okay - + Waiting - 等待中 + Downloading - 下载中 + Complete - 完成 + Queued - 排队中 + Paused - 已暂停 + Checking... - 正在校验... + Unknown - 未知 - - - - RsHtml - - Image is oversized for transmission. -Reducing image to %1x%2 pixels? - 图像过大不便传输。 -要缩放至 %1x%2 像素大小吗? + @@ -17689,7 +17560,7 @@ Reducing image to %1x%2 pixels? Invalid format - + 格式无效 @@ -17708,7 +17579,7 @@ Reducing image to %1x%2 pixels? filename - + @@ -17718,7 +17589,7 @@ Reducing image to %1x%2 pixels? level - + @@ -17728,7 +17599,7 @@ Reducing image to %1x%2 pixels? style - + @@ -17738,7 +17609,7 @@ Reducing image to %1x%2 pixels? stylesheet - + @@ -17748,17 +17619,13 @@ Reducing image to %1x%2 pixels? language - + Sets RetroShare's language. 设置RetroShare语言 - - RetroShare Usage Information - RetroShare实用信息 - Unable to open log file '%1': %2 @@ -17768,7 +17635,7 @@ Reducing image to %1x%2 pixels? Invalid operating mode specified: - + @@ -17778,57 +17645,57 @@ Reducing image to %1x%2 pixels? Could not create data directory: %1 - + 无法创建目录:%1 Revision - + Revision opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + 指定的语言代码无效: Invalid GUI style specified: - + 无效界面样式指定: Invalid log level specified: - + 指定日志级别无效: @@ -17837,7 +17704,7 @@ Reducing image to %1x%2 pixels? Registry Access Error. Maybe you need Administrator right. - + 注册表访问错误。也许你需要管理员权限。 @@ -18153,7 +18020,7 @@ Reducing image to %1x%2 pixels? IP address: - + IP 地址: @@ -18168,7 +18035,7 @@ Reducing image to %1x%2 pixels? Peer Name: - + 节点名称 @@ -18185,33 +18052,33 @@ Reducing image to %1x%2 pixels? but reported: - + 已报告 Wrong external ip address reported - + 报错误公网 IP IP address %1 was added to the whitelist - + IP 地址 %1 已被加入白名单 <p>This is the external IP your Retroshare node thinks it is using.</p> - + <p>这是你的 RetroShare 节点认为正在使用的外部 IP 。</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。 如果你刚改变IP,这是只是一个错误警告。 如果没有,那意味着你与这个好友的连接是由一个中间的节点转发的,这是可疑的。</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>但是,如果你只是因为某些原因(某些ISP经常强制更改IP)而更改了 IP,则此警告只会告诉你在 RetroShare 得知 IP 更改之前连接到新 IP 的好友。这种情况是正常的。</p><p><br/></p><p>可以通过将你自己的 IP (例如你的 ISP 的范围)列入白名单,或通过在“选项” -> “通知” ->“事件中心”中完全禁用这些警告来简单地禁止虚假警告。</p></body></html> @@ -18344,27 +18211,27 @@ Reducing image to %1x%2 pixels? Certificate has wrong signature!! This peer is not who he claims to be. - + 证书有错误的签名! 这个节点不是他自称的那样。 Missing/Damaged certificate. Not a real Retroshare user. - + 丢失/损坏的证书 。不是一个真是RetroShare用户 Certificate caused an internal error. - + 证书导致了一个内部错误。 Peer/node not in friendlist (PGP id= - + 节点不在好友列表里(PGP ID= Missing/Damaged SSL certificate for key - + 密钥丢失/损坏的SSL证书 @@ -18377,7 +18244,7 @@ Reducing image to %1x%2 pixels? Network Mode - 网络模式 + 网络模式 @@ -18423,7 +18290,7 @@ Reducing image to %1x%2 pixels? NAT - + @@ -18461,15 +18328,11 @@ Reducing image to %1x%2 pixels? Known / Previous IPs: 已知/先前的 IP - - Show Discovery information in statusbar - 状态栏中显示节点探索消息 - 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. 如果您取消此项,RetroShare 将只能在您连接上好友后 确定您的外网 IP 。启用此项可以帮助您在好友不多的 @@ -18493,84 +18356,84 @@ behind a firewall or a VPN. Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + 可接受的端口范围从 10 到 65535 。正常情况下低于 1024 的端口被你的系统保留。 Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + 可接受的端口范围从 10 到 65535 。正常情况下低于 1024 的端口被你的系统保留。 Onion Address - + 隐藏地址 Discovery On (recommended) - + 节点探索开启(推荐) Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + 节点探索关闭 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 代理没有启用 BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18579,133 +18442,135 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + 客户端 server - + 服务端 unknown - 未知 + 未知 BOB is processing a request - + connectivity check - + 检查连接 generating key - + 正在生成密钥 starting up - + 启动中 shuting down - + 关闭中 BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> @@ -18715,159 +18580,159 @@ Also check your ports! 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> WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + 启用高级设置 advanced mode - + 高级模式 I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - 127.0.0.1 + I2P proxy port - + I2P代理端口 BOB accessible - + Address - + 地址 .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - 开始 + 开始 Restart - + Stop - 停止 + 停止 BOB status - + Incoming - 接收 + <html><head/><body><p>Setup your hidden address (and port if needed)</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>此按钮使用相应的代理模拟一个SSL连接到您的隐藏地址。如果您的隐藏节点可达,则会导致SSL握手错误,RS将被解释为有效的连接状态。如果启用,此操作也可能导致一些关于事件中心中来自您本地主机IP(127.0.0.1)连接的“安全警告” ,您应该将其解释为良好通信的标志。</p></body></html> @@ -18881,101 +18746,101 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - 中继 + Enable Relay Connections - 启用中继连接 + Use Relay Servers - 使用中继服务器 + Relay options - 中继选项 + Number - 数量 + Bandwidth per link - 每连接带宽 + Total Bandwidth - 总带宽 + Friends - 好友 + Friends of Friends - 好友的好友 + General - 常规 + Total: - 总计: + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - 中继服务器设置 + Add Server - 添加服务器 + Server DHT Key - 服务器 DHT 密钥 + Remove Server - 删除服务器 + - <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>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> - + @@ -18985,23 +18850,23 @@ If you have issues connecting over Tor check the Tor logs too. IP Filters - + IP过滤 Activate IP filtering - + IP blacklist - + IP 黑名单 IP range - + IP 范围 @@ -19015,142 +18880,142 @@ If you have issues connecting over Tor check the Tor logs too. Origin - + 起源 Reason - + 原因 Comment - 评论*** + 评论 IPs - + IP 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> <html><head/><body><p>Enter any comment you'd like</p></body></html> - + <html><head/><body><p> 输入你想提交的评论</p></body></html> Add to blacklist - + 添加到黑名单 Add to whitelist - + 添加到白名单 Hidden Service Configuration - + 隐藏服务配置 <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>这是Tor代理的端口。你的RetroShare节点可以用这个端口连接到</p><p>隐藏节点。当你电脑上的端口激活后右边这个指示灯会变绿。</p><p>这并不意味着您的RetroShare流量通过Tor转发。只有你 </p><p>连接到隐藏节点 , 或者你自己运行一个隐藏节点才会正常工作。</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>如果左边所示的监听端口在你的电脑上被成功激活,此LED灯会变绿,</p><p>这不意味着你的RetroShare流量通过Tor通信。只有连接到隐藏节点</p><p>或者您自己运行一个隐藏节点时才会通过Tor通信。</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>这是 I2P Socks 的代理端口。你的 RetroShare 节点可以使用此端口连接到</p><p>隐藏节点。当你的计算机此端口处于活动状态时,右侧的 LED 将变绿。</p><p>这并不意味着你的 RetroShare 流量通过 I2P 传输。只有当</p><p>你连接到隐藏节点,或者你自己运行一个隐藏节点时,才会通过 I2P 通信。</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>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 传出代理正常 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;">[something].onion</span> 或 <span style=" font-weight:600;">[something].b32.i2p 。</span> 如果你用 Tor 配置了一个隐藏的服务,那么这个 onion 地址就是由 Tor自动生成的。你可以在例如 <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span> 中得到它。对于I2P:安装一个服务器隧道 ( http://127.0.0.1:7657/i2ptunnelmgr ) 并在启动时复制它的 base32 地址(应以.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> - + <html><head/><body><p>仅当您使用上述按钮启动活动测试时,此LED才会变为绿色。</p><p>这意味着可以使用Tor(或I2P)网络从任何地方访问您的隐藏节点。</p><p>恭喜!</p></body></html> incoming ok - + 传入正常 Expected Configuration: - + 预期的设置 Please fill in a service address - + 请填写服务地址 IP Range - + IP 范围 Reported by DHT for IP masquerading - + DHT报告IP伪装 Range made from %1 collected addresses - + 由%1个收集组成的地址范围 @@ -19163,82 +19028,82 @@ If you have issues connecting over Tor check the Tor logs too. 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>从以下来源收集白名单的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允许您使用BitTorrent的DHT网络回应好友的连接请求。它可以极大地改善连通性。没有信息被实际存储在DHT中。它仅用作代理系统与其他RetroShare节点联系。</p><p>节点探索服务将您信任好友的节点名称和ID发送给已连接的节点,来帮助他们选择新朋友。 但节点永远不会自动建立好友关系,并且节点仍然需要相互添加信任才会允许连接。</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> <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 添加到白名单中。</p></body></html> Ban every IP reported by your friends - + 屏蔽好友报告的每一个IP <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> Ban every masquerading IP reported by your DHT - + 屏蔽你的DHT报告的每一个伪装的IP <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> Automatically ban ranges of DHT masquerading IPs starting at - + 自动屏蔽DHT伪装IP的范围 Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor Socks 代理 Tor outgoing Okay - + Tor 传出代理正常 Tor proxy is not enabled - + Tor 代理没有启用 @@ -19266,7 +19131,7 @@ If you have issues connecting over Tor check the Tor logs too. Require whitelist - + 需要白名单 @@ -19289,12 +19154,12 @@ If you have issues connecting over Tor check the Tor logs too. 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;权限</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>要小心:有些服务依赖彼此。 例如将开关关闭也将停止所有匿名传输、私聊和远程消息。</p> @@ -19302,7 +19167,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - + 表单 @@ -19310,7 +19175,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + 选项 @@ -19328,13 +19193,13 @@ If you have issues connecting over Tor check the Tor logs too. Share - + 分享 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. - + 您可以通过分享让你的好友了解您的频道。 选择您的好友来分享频道。 @@ -19352,32 +19217,32 @@ Select the Friends with which you want to Share your Channel. Shared directory - + 共享文件目录 Visible name - + 显示名称 Access - + 访问权限 Visibility - 可见性 + 可见性 Add new - + 添加新的共享文件夹 Cancel - + 取消 @@ -19402,52 +19267,52 @@ Select the Friends with which you want to Share your Channel. Choose directory - 选择目录 + 选择目录 Change group visibility... - + 更改群组的可见性 Choose directory to share... - + 选择共享目录 Choose visible name... - + 选择显示名称 [Unset] (Double click to change) - + [未设置] (双击更改) Double click to select which groups of friends can see the files - + 双击以选择哪个群组的好友可以看到这些文件 Double click to change the name that friends will see. - + 双击以更改好友将看到的名称 Double click to change shared directory path - + 双击更改共享目录路径 Directory does not exist! Double click to change shared directory path - + 目录不存在! 双击更改共享目录路径 [All friend nodes] - + [全部好友节点] @@ -19462,7 +19327,7 @@ Select the Friends with which you want to Share your Channel. Choose a directory to share - + 选择共享目录 @@ -19496,11 +19361,7 @@ Select the Friends with which you want to Share your Channel. Configure shared directories - - - - Search files - 搜索文件 + 设置共享文件目录 @@ -19572,18 +19433,10 @@ Select the Friends with which you want to Share your Channel. Send retroshare Links 发送 RetroShare 链接 - - Send retroshare Links to Cloud - 发送retroshare 链接到云端 - - - Add Links to Cloud - 将链接添加到云端 - Some files have been omitted - + 某些文件已被忽略 @@ -19619,17 +19472,17 @@ Select the Friends with which you want to Share your Channel. Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19637,48 +19490,48 @@ Select the Friends with which you want to Share your Channel. Friend - 好友 + 好友 Go Online - + 转为在线 Chatmessage - + 聊天消息 New Msg - + 新消息 Message - + 消息 Message arrived - + 新消息到达 Download - 下载 + 下载 Download complete - + 下载完成 Lobby - + 聊天室 @@ -19721,7 +19574,7 @@ Select the Friends with which you want to Share your Channel. Default - 默认 + 默认 @@ -19729,20 +19582,16 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + 声音关闭,点击开启 Sound is on, click to turn it off - + 声音开启,点击关闭 SplashScreen - - Load profile - 载入配置文件 - Load configuration @@ -19759,17 +19608,13 @@ Select the Friends with which you want to Share your Channel. RetroShare - Retroshare - - - Login - 登录 + RetroShare Password - 密码 + 密码 @@ -19786,7 +19631,7 @@ Select the Friends with which you want to Share your Channel. Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - 打开新建配置对话框或添加新位置到当前配置中。 + 打开新建档案对话框或添加新位置到当前档案中。 当前身份/位置不会受影响。 @@ -19795,9 +19640,9 @@ The current identities/locations will not be affected. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + @@ -19812,7 +19657,7 @@ p, li { white-space: pre-wrap; } Wrong password - + 密码错误 @@ -19828,7 +19673,12 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + 你的SSL证书(你的节点)密码将会保存在你的Gnome钥匙链上。 + + +你的PGP密码不会被保存。 + +此选项可以在设置中恢复。 @@ -19837,7 +19687,11 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + 你的SSL证书(你的节点)密码将会加密保存在你的钥匙链上。 + +你的PGP密码不会被保存。 + +此选项可以在设置中恢复。 @@ -19846,7 +19700,12 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + 你的SSL证书(你的节点)密码将会加密保存在keys/help.dta文件里。 +这不安全。 + +你的PGP密码不会被保存。 + +此选项可以在设置中恢复。 @@ -19925,12 +19784,12 @@ This choice can be reverted in settings. Global Router - + 全球路由 Gxs Transport - + @@ -20122,7 +19981,7 @@ This choice can be reverted in settings. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20136,7 +19995,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:'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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -20233,7 +20092,7 @@ p, li { white-space: pre-wrap; } Remove this item - + @@ -20388,58 +20247,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Tor状态: Unknown - 未知 + Not started - + Hidden service address: - + 隐藏服务地址: Tor bootstrap status: - + Not set - + Onion address: - + Onion地址: Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + [等待Tor就绪] @@ -20447,28 +20306,28 @@ p, li { white-space: pre-wrap; } Tor - + Tor <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor现在离线 Tor is OK - + Tor已就绪 No tor configuration - + @@ -20486,98 +20345,98 @@ p, li { white-space: pre-wrap; } Shared Directories - + 共享文件目录 Automatically share incoming directory (Recommended) - 自动共享接收文件目录(推荐) + 自动共享接收文件目录(推荐) Edit Share - + 编辑分享 Auto-check shared directories every - + 自动检查共享目录,每隔 minute(s) - + (分钟) <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + <html><head/><body><p>告诉RetroShare遵循链接。RetroShare会自动处理循环和重复目录。 如果未选中,RetroShare将忽略对文件和目录的符号链接。</p></body></html> follow symbolic links - + 遵循符号链接 <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + 接收文件目录 Browse - 浏览 + 浏览 Partials Directory - + 临时文件目录 Maximum uploads per friend (0 = no limit) - + @@ -20592,12 +20451,12 @@ p, li { white-space: pre-wrap; } End-to-end encryption: - + 端对端加密: Allow direct download: - + 允许直接下载: @@ -20622,50 +20481,57 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + <html><head/><body><p>匿名隧道可以进行端到端加密。 为保持向后兼容性,这可以是可选的(选择“接受”),但最终所有 RetroShare 节点将被切换到“强制”,这意味着所有匿名传输将被端到端加密。 使用“接受”,你可能会使用两倍的隧道传输,因为无法知道一个加密的和一个明确的隧道实际上是从同一个源传输的。</p></body></html> Accepted - + 接受 Enforced - + 强制 <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;">可以在非好友间传输数据和搜索请求。这些数据只会通过已连接的好友进行匿名传输。</span></p><p style="-qt-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;"><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-size:8pt;">你可以在共享文件对话框中对每个共享文件夹分别设置以下共享标记:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">好友可见:</span>文件对好友可见。</li> +<li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">匿名共享:</span> 文件可以通过 F2F 隧道匿名访问。</li></ul></body></html> @@ -20675,32 +20541,32 @@ 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> 让传输以递增的顺序请求 1MB 的文件块,便于下载时预览。<span style=" font-weight:600;">  随机</span> 是完全随机的,有利于swarm集群下载。 Progressivexis purely random and favors swarming behavior. <span style=" font-weight:600;">渐进</span> 是一个折中方法,在部分文件末尾不到50MB内随机选择下一个块。 这允许一些随机性,同时防止大量空文件的初始化时间。</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> Set Incoming Directory - + 设置文件接收目录 Set Partials Directory - + 设置临时文件目录 Files - + 文件 @@ -20762,21 +20628,6 @@ p, li { white-space: pre-wrap; } Completed 已完成 - - Speed - i.e: Download speed - 速度 - - - Progress / Availability - i.e: % downloaded - 进度/可用块 - - - Sources - i.e: Sources - 来源 - Status @@ -20792,16 +20643,6 @@ p, li { white-space: pre-wrap; } Remaining 剩余 - - Download time - i.e: Estimated Time of Arrival / Time left - 下载时间 - - - Peer - i.e: user name - 节点 - Progress @@ -20856,7 +20697,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - 节点 + @@ -20978,7 +20819,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="32" src=":/images/64px_help.png">&nbsp;&nbsp;文件传输</h1> +<p>RetroShare 支持两种文件传输方式:来自好友的直接传输,及匿名远程隧道传输。 +此外文件传输支持多文件源及swarm集群(下载时可以作为文件源)。</p> +<p>你可以通过左侧的 <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> 图标共享文件。 +这些文件将在我的文件标签中列出。<p></p>你可以在好友的文件标签中决定每个好友分组是否可以看到你的文件。</p> +<p>搜索标签列出来自好友文件列表中的文件,及通过多跳隧道系统匿名可见的远程文件。</p> @@ -21005,80 +20851,16 @@ p, li { white-space: pre-wrap; } Choose directory 选择目录 - - Failed - 失败 - - - Okay - - - - Waiting - 等待中 - - - Downloading - 下载中 - - - Complete - 完成 - - - Queued - 排队中 - - - Paused - 已暂停 - - - Checking... - 正在校验... - - - Unknown - 未知 - - - If the hash of the downloaded data does -not correspond to the hash announced -by the file source. The data is likely -to be corrupted. - -RetroShare will ask the source a detailed -map of the data; it will compare and invalidate -bad blocks, and download them again - -Try to be patient! - 如果下载数据的散列值与文件源发布的 -散列值不符,很可能下载数据已损坏。 - -RetroShare 将向数据源请求详细的校验 -数据图对比找出损坏的数据块,并重新 -下载坏块。 - -请耐心等待! - - - Transferring - 传输中 - - - Uploading - 上传中 - Anonymous end-to-end encrypted tunnel 0x - + 匿名和端对端加密路由 0x Tunnel - + @@ -21088,7 +20870,7 @@ RetroShare 将向数据源请求详细的校验 RetroShare - Retroshare + RetroShare @@ -21138,15 +20920,6 @@ RetroShare 将向数据源请求详细的校验 Please enter a new--and valid--filename 输入新的有效文件名 - - Last Time Seen - i.e: Last Time Receiced Data - 上次发现 - - - UserID - 用户 ID - @@ -21254,11 +21027,6 @@ RetroShare 将向数据源请求详细的校验 File Transfers 文件传输 - - Path - i.e: Where file is saved - 路径 - Path @@ -21302,21 +21070,17 @@ RetroShare 将向数据源请求详细的校验 %1 tunnels - + Anonymous tunnel 0x 匿名Turtle路由 - - version: - 版本: - Files - + 文件 @@ -21348,7 +21112,7 @@ RetroShare 将向数据源请求详细的校验 Empty - + @@ -21359,7 +21123,7 @@ RetroShare 将向数据源请求详细的校验 Friends Directories [updating...] - + 好友目录[更新中] @@ -21369,7 +21133,7 @@ RetroShare 将向数据源请求详细的校验 My Directories [updating...] - + 我的目录[更新中] @@ -21379,7 +21143,7 @@ RetroShare 将向数据源请求详细的校验 # Files - + @@ -21399,22 +21163,22 @@ RetroShare 将向数据源请求详细的校验 Access - + 访问 Visibility - 可见性 + 可见性 Column %1 - + %1列 Row %1 - + %1行 @@ -21463,7 +21227,7 @@ RetroShare 将向数据源请求详细的校验 Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + @@ -21572,7 +21336,7 @@ RetroShare 将向数据源请求详细的校验 Forwarded data - + 已转发数据 @@ -21701,7 +21465,7 @@ RetroShare 将向数据源请求详细的校验 Enable Retroshare WEB Interface - 激活RetroShare网页界面。 + 启用RetroShare网页界面。 @@ -21711,43 +21475,27 @@ RetroShare 将向数据源请求详细的校验 Port: - 端口: + 端口: Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + 应用设置并打开浏览器 Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - - - - Port : - 端口: - - - allow access from all IP adresses (Default: localhost only) - 允许所有IP地址接入,(默认设置:只允许本地主机接入) - - - apply setting and start browser - 应用设置并打开浏览器 - - - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - 注意:这些设置不会影响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">&nbsp;&nbsp;网页界面</h1> <p>网页界面允许您从浏览器控制 RetroShare 。多个设备可以通过一个 RetroShare 实例共享控制。 所以,您可以在平板电脑上开始对话,然后使用台式电脑继续操作。</p> <p>警告:不要将网络接口暴露在互联网上,因为没有访问控制和加密。 如果要通过互联网使用网络接口,请使用SSH隧道或代理来保护连接。</p> @@ -22279,7 +22027,7 @@ RetroShare 将向数据源请求详细的校验 Post Pulse to Wire - + 向wire发刺探包 @@ -22396,134 +22144,133 @@ RetroShare 将向数据源请求详细的校验 Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + 连接 Profile - + Trust level - + 信任等级 Has signed your key? - + Id - + ID Last used - 上次使用 + Personal signature - 我已签名背书 + Marginally trusted peer - 有限信任 + Fully trusted peer - 完全信任 + Untrusted peer - 不信任 + Yes - + No - + Last hour - 一小时前 + 1小时前 Today - 今天 + 今天 Never - 从未 + %1 days ago - %1 天前 + %1天前 Accepted - + 已接受 - - + PGP key signed by you - 您签名过的PGP密钥 + PGP密钥被你签名 has authenticated you. Right-click and select 'make friend' to be able to connect. - 已对您的公钥签名。 -点击右键选择 '加为好友' 可连接。 + - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_zh_TW.qm b/retroshare-gui/src/lang/retroshare_zh_TW.qm index 97ba708db..bea0bec55 100644 Binary files a/retroshare-gui/src/lang/retroshare_zh_TW.qm and b/retroshare-gui/src/lang/retroshare_zh_TW.qm differ diff --git a/retroshare-gui/src/lang/retroshare_zh_TW.ts b/retroshare-gui/src/lang/retroshare_zh_TW.ts index f57156588..f41660bcc 100644 --- a/retroshare-gui/src/lang/retroshare_zh_TW.ts +++ b/retroshare-gui/src/lang/retroshare_zh_TW.ts @@ -1,18 +1,16 @@ - - - + AWidget Retroshare version - + version - + @@ -28,7 +26,7 @@ About - 關於 + @@ -36,52 +34,52 @@ Form - 表單 + About - 關於 + Copy Info - + close - + Max score: %1 - + Score: %1 - + Level: %1 - + About RetroShare - RetroShare 使用愉快 + Have fun ;-) - + Only Hidden Node - + @@ -89,7 +87,7 @@ Add Comment - + @@ -97,28 +95,28 @@ File type(extension): - + Use default command - + Command - + RetroShare - + - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - + @@ -126,27 +124,27 @@ RetroShare: Advanced Search - + Search Criteria - + Add a further search criterion. - + Reset the search criteria. - + Cancels the search. - + @@ -156,12 +154,12 @@ Perform the advanced search. - + Search - + @@ -170,87 +168,87 @@ Create Album - + Album Name: - + Category: - + Animals - + Family - + Friends - + Flowers - + Holiday - + Landscapes - + Pets - + Portraits - + Travel - + Work - + Random - + Caption: - + Where: - + Photographer: - + @@ -260,116 +258,116 @@ Share Options - + Policy: - + Quality: - + Comments: - + Identity: - + Public - + Restricted - + Resize Images (< 1Mb) - + Resize Images (< 10Mb) - + Send Original Images - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with Identity - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Back - + Add Photos - + Publish Album - + Untitle Album - + Say something about this album... - + Where were these taken? - + Load Album Thumbnail - + @@ -378,47 +376,47 @@ p, li { white-space: pre-wrap; } Album - + Album Thumbnail - + TextLabel - + Summary - + Album Title: - + Category: - + Caption - + Where: - + When - + @@ -428,51 +426,51 @@ p, li { white-space: pre-wrap; } Share Options - + Comments - + Publish Identity - + Visibility - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Add Photo - + Edit Photo - + Delete Photo - + Publish Photos - + @@ -487,25 +485,25 @@ p, li { white-space: pre-wrap; } TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -513,187 +511,187 @@ p, li { white-space: pre-wrap; } Language - + Choose the language used in RetroShare - + (Needs restart) - + Style - + Choose RetroShare's interface style - + Style Sheet - + Appearance - + Tool Bar - + Icon Only - + Text Only - + Text Beside Icon - + Text Under Icon - + Choose the style of Tool Buttons. - + Icon Size = 8x8 - + Icon Size = 16x16 - + Icon Size = 24x24 - + Icon Size = 64x64 - + Icon Size = 128x128 - + Status Bar - + Show Toaster Disable - + Show Sound Status - + Show Network Rate Status - + Show Discovery Status - + Show DHT Status - + Show Hashing Status - + Show NAT Status - + Show Peer Status - + Show Status ComboBox - + Remove surplus text in status bar. - + Compact Mode - + Show Operating Mode Status - + Show SysTray on Status Bar - + Disable SysTray ToolTip - + Main page items: - + Buttons - + Item list - + Icon Size = 32x32 - + @@ -702,43 +700,43 @@ p, li { white-space: pre-wrap; } 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. - + Identities - + Circles - + GxsForums - + GxsChannels - + The Wire - + Photos - + @@ -746,17 +744,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + [ERROR]) - + @@ -764,17 +762,17 @@ p, li { white-space: pre-wrap; } Change Avatar - + Your Avatar Picture - + Add Avatar - + @@ -784,12 +782,12 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - + Load Avatar - + @@ -797,7 +795,7 @@ p, li { white-space: pre-wrap; } Click to change your avatar - + @@ -805,7 +803,7 @@ p, li { white-space: pre-wrap; } KB/s - + @@ -813,7 +811,7 @@ p, li { white-space: pre-wrap; } N/A - + @@ -821,7 +819,7 @@ p, li { white-space: pre-wrap; } RetroShare Bandwidth Usage - + @@ -832,47 +830,47 @@ p, li { white-space: pre-wrap; } Reset - + Receive Rate - + Send Rate - + Always on Top - + Style - + Changes the transparency of the Bandwidth Graph - + 100 - + % Opaque - + Save - + @@ -882,12 +880,12 @@ p, li { white-space: pre-wrap; } Since: - + Hide Settings - + @@ -896,33 +894,33 @@ p, li { white-space: pre-wrap; } Sum - + All - + KB/s - + Count - + Average - + Total - + @@ -930,72 +928,72 @@ p, li { white-space: pre-wrap; } Name - + ID - + In (KB/s) - + InMax (KB/s) - + InQueue - + InAllocated (KB/s) - + Allocated Sent - + Out (KB/s) - + OutMax (KB/s) - + OutQueue - + OutAllowed (KB/s) - + Allowed Recvd - + TOTALS - + Totals - + @@ -1008,57 +1006,57 @@ p, li { white-space: pre-wrap; } Form - 表單 + Friend: - + Type: - 類型 + Up - + Down - + Service: - + Unit: - + Legend: - + Current - + Total - + Log scale - + @@ -1066,27 +1064,27 @@ p, li { white-space: pre-wrap; } Channels - + Tabs - + General - + Load posts in background (Thread) - + Open each channel in a new tab - + @@ -1094,180 +1092,180 @@ p, li { white-space: pre-wrap; } Name - + Change nick name - + Mute participant - + Ban this person (Sets negative opinion) - + Send Message - + Sort by Name - + Sort by Activity - + Invite friends to this lobby - + Invite friends - + Select friends to invite: - + Topic: %1 - + %1 changed his name to: %2 - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + This participant is not active since: - + seconds - + Start private chat - + Give neutral opinion - + Give positive opinion - + Show author in people tab - + Search - + Leave this chat room (Unsubscribe) - + Welcome to chat room %1 - + Room chat - + Decryption failed. - + Signature mismatch - + Unknown key - + Unknown hash - + Unknown error. - + Cannot start distant chat - + Distant chat cannot be initiated: - + %1 has left the room. - + Chat room management - + %1 joined the room. - + Unsubscribe from chat room - + Do you want to unsubscribe to this chat room? - + @@ -1275,7 +1273,7 @@ p, li { white-space: pre-wrap; } Show Chat Lobby - + @@ -1283,38 +1281,38 @@ p, li { white-space: pre-wrap; } Chats - + You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + Unknown Lobby - + Remove All - + @@ -1323,212 +1321,212 @@ p, li { white-space: pre-wrap; } Name - + Count - + Topic - + Private Subscribed chat rooms - + Public Subscribed chat rooms - + Private chat rooms - + Public chat rooms - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Rooms</h1> <p>Chat rooms 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 room 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 room, 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 room</li> <li>Double click a chat room to enter, chat, and show it to your friends</li> </ul> Note: For the chat rooms to work properly, your computer needs be on time. So check your system clock! </p> - + Create chat room - + Leave this room - + Create a non anonymous identity and enter this room - + Create an identity and enter this chat room - + Enter this chat room - + Enter this chat room as... - + Copy RetroShare Link - + You cannot join this chat room with your default identity, since it is anonymous and the chat room forbids it. - + You're not subscribed to this chat room; Double click-it to enter and chat. - + You will need to create a non anonymous identity in order to join this chat room. - + You will need to create an identity in order to join chat rooms. - + No chat room selected. Select chat rooms at left to show details. Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - + Choose a non anonymous identity for this chat room: - + Choose an identity for this chat room: - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private - + Public - + Anonymous IDs accepted - + Remove Auto Subscribe - + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Subscribed - + Columns - + Yes - + No - + Chat rooms - + Chat room Name: - + Chat room Id: - + Topic: - + @@ -1538,12 +1536,12 @@ Double click a chat room to enter and chat. Security: - + Peers: - + @@ -1553,36 +1551,36 @@ Double click a chat room to enter and chat. TextLabel - + Default identity is anonymous - + No anonymous IDs - + Show - 顯示 + column - + Chats - + @@ -1595,28 +1593,28 @@ Double click a chat room to enter and chat. Write a quick Message - + Send Mail - + Write Message - + Start Chat - + Send - + @@ -1626,7 +1624,7 @@ Double click a chat room to enter and chat. Quick Message - + @@ -1635,279 +1633,279 @@ Double click a chat room to enter and chat. General - + Distant Chat - + Everyone - + Contacts - + Nobody - + Accept encrypted distant chat from - + Chat Settings - + Enable Emoticons Private Chat - + Enable Emoticons Group Chat - + Enable custom fonts - + Enable custom font size - + Minimum font size - + Enable bold - + Enable italics - + Minimum text contrast - + Send message with Ctrl+Return - + Send as plain text by default - + Load embedded images - + Chat Lobby - + Blink tab icon - + Do not send typing notifications - + Private Chat - + Open Window for new chat - + Grab Focus when chat arrives - + Use a single tabbed window - + Blink window/tab icon - + Chat Font - + Change Chat Font - + Chat Font: - + History - + Style - + Style: - + Variant: - + Group chat - + Private chat - + Choose your default font for Chat. - + Incoming - + Outgoing - + Incoming message in history - + Outgoing message in history - + Incoming message - + Outgoing message - + Outgoing offline message - + System - + System message - + UserName - + /me is sending a message with /me - + <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> - + Chatlobbies - + Enabled: - + Saved messages (0 = unlimited): - + Number of messages restored (0 = off): - + Maximum storage period, in days (0=keep all): - + Search by default - + @@ -1917,72 +1915,72 @@ Double click a chat room to enter and chat. Whole Words - + Move to cursor - + Color All Text Found - + Color of found text - + Choose color of found text - + Maximum count for coloring matching text - + Threshold for automatic search - + Default identity for chat lobbies: - + Show Bar by default - + Private chat invite from - + Name : - + PGP id : - + Valid until : - + Chats - + @@ -1990,32 +1988,32 @@ Double click a chat room to enter and chat. Standard style for group chat - + Compact style for group chat - + Standard style for private chat - + Compact style for private chat - + Standard style for history - + Compact style for history - + @@ -2023,7 +2021,7 @@ Double click a chat room to enter and chat. Show Chat - + @@ -2031,7 +2029,7 @@ Double click a chat room to enter and chat. Private Chat - + @@ -2039,325 +2037,325 @@ Double click a chat room to enter and chat. Close - + Send - + Bold - + Underline - + Italic - + Insert emoticon - + Attach a Picture - + <html><head/><body><p>QToolButton:disabled {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> - + Strike - + Clear Chat History - + Disable Emoticons - + Save Chat History - + Browse Message History - + Browse History - + Delete Chat History - + Deletes all stored and displayed chat history - + Choose font - + Reset font to default - + Quote - + Quotes the selected text - + Drop Placemark - + Insert horizontal rule - + Save image - + Send as PlainText - + Send as plain text without font. - + Don't replace tag with Emote Icon. - + Show Hidden Images - + is typing... - + It remains %1 characters after HTML conversion. - + Warning: This message is too big of %1 characters after HTML conversion. - + Choose your font. - + Do you really want to physically delete the history? - + Add Extra File - + Load Picture File - + Save as... - + Text File (*.txt );;All Files (*) - + appears to be Offline. - + Messages you send will be delivered after Friend is again Online. - + is Idle and may not reply - + is Away and may not reply - + is Busy and may not reply - + Find Case Sensitively - + Find Whole Words - + Move To Cursor - + Don't stop to color after X items found (need more CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Find </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color - + Attach a File - + WARNING: Could take a long time on big history. - + Choose color - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: - + Double click on it to add his name on text writer. - + Unsigned - + items found. - + No items found. - + <b>Return to marked text</b><br><i>Ctrl+M</i> - + Type a message here - + Don't stop to color after - + items found (need more CPU) - + @@ -2365,12 +2363,12 @@ Double click on it to add his name on text writer. TextLabel - + Empty Circle - + @@ -2378,131 +2376,131 @@ Double click on it to add his name on text writer. Showing details: - + Membership - + Name - + IDs - + Personal Circles - + Public Circles - + Peers - + Status - + ID - + Friends - + Friends of Friends - + Others - + Permissions - + Anon Transfers - + Discovery - + Share Category - + Create Personal Circle - + Create External Circle - + Edit Circle - + Todo - + Friends Of Friends - + External Circles (Admin) - + External Circles (Subscribed) - + External Circles (Other) - + Circles - + @@ -2510,174 +2508,174 @@ Double click on it to add his name on text writer. Details - + Local Address - + External Address - + Node info: - + Current address: - + Dynamic DNS - + Port - + Include signatures - + RetroShare - + Error : cannot get peer details. - + Encryption - + Not connected - + Retroshare node details - + Node name : - + Status : - + Last Contact : - + Retroshare version : - + Node ID : - + Name: - 名稱: + Status message: - + List of known addresses: - + Retroshare Certificate - + Hidden Address - + none - + <p>This certificate contains: - + <li>a <b>node ID</b> and <b>name</b> - + an <b>onion address</b> and <b>port</b> - + an <b>IP address</b> and <b>port</b> - + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <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>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> - + with - + external signatures</li> - + @@ -2685,229 +2683,229 @@ Double click on it to add his name on text writer. Connect Friend Wizard - + Add a new Friend - + &You get a certificate file from your friend - + &Make friend with selected friends of my friends - + &Send an Invitation by Email (Your friend will receive an email with instructions how to download RetroShare) - + Include signatures - + Copy your Cert to Clipboard - + Save your Cert into a File - + Run Email program - + Open Cert of your friend from File - + Open certificate - + Please, paste your friend's Retroshare certificate into the box below - + Certificate files - + Use PGP certificates saved in files. - + Import friend's certificate... - + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - + Export my certificate... - + Drag and Drop your friends's certificate in this Window or specify path in the box below - + Browse - + Friends of friends - + Select now who you want to make friends with. - + Show me: - + Make friend with these peers - + RetroShare ID - + Use RetroShare ID for adding a Friend which is available in your network. - + Add Friends RetroShare ID... - + Paste Friends RetroShare ID in the box below - + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - + 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) - + Your friends' email addresses: - + Enter Friends Email addresses - + Subject: - + Friend request - + Details about the request - + Peer details - + @@ -2919,23 +2917,23 @@ Double click on it to add his name on text writer. 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: - + @@ -2947,254 +2945,254 @@ 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: - + Enter the certificate manually - + Enter RetroShare ID manually - + &Send an Invitation by Web Mail Providers - + Recommend many friends to each other - + RetroShare certificate - + Please paste below your friend's Retroshare certificate - + Paste certificate - + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's profile key. Do not paste your friend's profile key here (not even a part of it). It's not going to work.</p></body></html> - + 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 - + Here is the error message: - + Make Friend - + Details about your friend: - + Key validity: - + Signers - + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. - + Abnormal size read is bigger than memory block. - + Invalid external IP. - + Invalid local IP. - + Invalid checksum section. - + Checksum mismatch. Certificate is corrupted. - + Unknown section type found (Certificate might be corrupted). - + Missing checksum. - + Unknown certificate error - + Certificate Load Failed - + Cannot get peer details of PGP key %1 - + Any peer I've not signed - + Friends of my friends who already trust me - + Signed peers showing as denied - + Peer name - + Also signed by - + Peer id - + Certificate appears to be valid - + Not a valid Retroshare certificate! - + RetroShare Invitation - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + This is your own certificate! You would not want to make friend with yourself. Wouldn't you? - + This key is already on your trusted list - + You have already signed this key - + Ultimate - + Full - + Marginal - + @@ -3204,63 +3202,63 @@ Warning: In your File-Transfer option, you select allow direct download to No. No Trust - + You have a friend request from - + Certificate Load Failed:file %1 not found - + This Peer %1 is not available in your Network - + Use new certificate format (safer, more robust) - + Use old (backward compatible) certificate format - + Remove signatures - + RetroShare Invite - + Connect Friend Help - + You can copy this text and send it to your friend via email or some other way - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + @@ -3268,129 +3266,129 @@ Warning: In your File-Transfer option, you select allow direct download to No. RetroShare Certificate (*.rsc );;All Files (*) - + Select Certificate - + Sorry, create certificate failed - + Please choose a filename - + Certificate file successfully created - + Sorry, certificate file creation failed - + *** None *** - + Use as direct source, when available - + IP-Addr: - + IP-Address - + Show Advanced options - + <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 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. This setting is applied to all locations of the same node.</p></body></html> - + <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. Applied to all locations of the same node.</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. Applies to all locations of the same node.</p></body></html> - + 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 - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Add key to keyring - + This key is already in your keyring - + @@ -3398,69 +3396,69 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Invalid node id. - + Auto-download recommended files - + Can be used as direct source - + Require whitelist clearance to connect - + Add IP to whitelist - + No IP in this certificate! - + <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> - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 - + Certificate Load Failed:something is wrong with %1 - + @@ -3468,241 +3466,241 @@ even if you don't make friends. Connection Progress - + Connecting to: - + TextLabel - + Network - + Net Result - + Connect Status - + Contact Result - + DHT Startup - + DHT Result - + Peer Lookup - + Peer Result - + UDP Setup - + UDP Result - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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: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;"><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:'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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'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;"><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:'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> - + Connection Assistant - + Invalid Peer ID - + Unknown State - + Offline - + Behind Symmetric NAT - + Behind NAT & No DHT - + NET Restart - + Behind NAT - + No DHT - + NET STATE GOOD! - + DHT Failed - + DHT Disabled - + DHT Okay - + Finding RS Peers - + Lookup requires DHT - + Searching DHT - + Lookup Timeout - + Peer DHT NOT ACTIVE - + Lookup Failure - + Peer Offline - + Peer Firewalled - + Peer Online - + Connection In Progress - + Initial connections can take a while, please be patient - + If an error is detected it will be displayed here - + You can close this dialog at any time - + Retroshare will continue connecting in the background - + Connection Timeout - + Connection Attempt has taken too long - + But no error has been detected - + Try again shortly, Retroshare will continue connecting in the background - + @@ -3711,201 +3709,201 @@ p, li { white-space: pre-wrap; } If you continue to get this message, please contact developers - + DHT Lookup Timeout - + DHT Lookup has taken too long - + UDP Connection Timeout - + UDP Connection has taken too long - + UDP Connection Failed - + We are continually working to improve connectivity. - + In this case the UDP connection attempt has failed. - + Improve connectivity by opening a Port in your Firewall. - + Connected - + Congratulations, you are connected - + DHT startup Failed - + Your DHT has not started properly - + Common causes of this problem are: - + - You are not connected to the Internet - + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + DHT is Disabled - + The DHT is OFF, so Retroshare cannot find your Friends. - + Retroshare has tried All Known Addresses, with no success - + The DHT is needed if your friends have Dynamic IP Addresses. - + Go to Settings->Server and change config to "Public: DHT and Discovery" - + Peer Denied Connection - + We successfully reached your Friend. - + but they have not added you as a Friend. - + Please contact them to add your Certificate - + Your Retroshare Node is configured Okay - + We successfully reached your Friend via UDP. - + Please contact them to add your Full Certificate - + We Cannot find your Friend. - + They are either offline or their DHT is Off - + Peer DHT is Disabled - + Your Friend has configured Retroshare with DHT Disabled. - + You have previously connected to this Friend - + Retroshare has determined that they have DHT switched off - + Without the DHT it is hard for Retroshare to locate your friend - + Try importing a fresh Certificate to get up-to-date connection information - + Incomplete Friend Details - + You have imported an incomplete Certificate - + Please retry importing the full Certificate - + @@ -3913,42 +3911,42 @@ p, li { white-space: pre-wrap; } N/A - + UNVERIFIABLE FORWARD! - + UNVERIFIABLE FORWARD & NO DHT - + Searching - + UDP Connect Timeout - + Only Advanced Retroshare users should switch off the DHT. - + Retroshare cannot connect without this information - + They need a Certificate + Node for UDP connections to succeed - + @@ -3959,63 +3957,63 @@ p, li { white-space: pre-wrap; } Circle Details - + Name - + <html><head/><body><p>The circle name, contact author and invited member list will be visible to all invited members. If the circle is not private, it will also be visible to neighbor nodes of the nodes who host the invited members.</p></body></html> - + <html><head/><body><p>The creator of a circle is purely optional. It is however useful for public circles so that people know with whom to discuss membership aspects.</p></body></html> - + Public - + IDs - + Filter - + Nickname - + Invited Members - + <html><head/><body><p>Members of this list will be automatically proposed to join the circle (by accepting membership). They will</p><p>not receive data that is restricted to this circle until they do so.</p></body></html> - + Known People - + ID - + @@ -4025,69 +4023,69 @@ p, li { white-space: pre-wrap; } Name: - 名稱: + Contact author: - + [Circle Admin] - + Distribution: - + <html><head/><body><p>Publicly distributed circles are visible to your friends, which will get to know the circle data (Creator, members, etc)</p></body></html> - + <html><head/><body><p>Private (a.k.a. self-restricted) circles are only visible to the invited members of these circles. In practice the circle uses its own list of invited members to limit its own distribution. </p></body></html> - + Private - + <html><head/><body><p>Circles can be restricted to the members of another circle. Only the members of that second circle will be allowed to see the new circle and its content (list of members, etc).</p></body></html> - + Only visible to members of: - + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected - + No Circle Limitations Selected - + @@ -4097,86 +4095,86 @@ p, li { white-space: pre-wrap; } Remove - + Search - + All - + Signed - + Signed by known nodes - + Edit Circle - + PGP Identity - + Anon Id - + Circle name - + Update - + Close - + Create New Circle - + Create - + PGP Linked Id - + Add Member - + Remove Member - + @@ -4185,38 +4183,38 @@ p, li { white-space: pre-wrap; } Create a Group - + Group Name: - + Group ID: - + Enter a name for your group - + To be defined - + Friends - + Edit Group - + @@ -4225,147 +4223,147 @@ p, li { white-space: pre-wrap; } New Channel Post - + Channel Post - + Channel Post to: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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> - + Add File to Attach - + Add Channel Thumbnail - + Message - + Subject : - + Attachments - + Allow channels to get frame for message thumbnail from movie media attachments or not - + Auto Thumbnail - + Drag and Drop Files from Search Results - + Paste RetroShare Links - + Paste RetroShare Link - + Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + Add Extra File - + RetroShare - + File already Added and Hashed - + Please add a Subject - + Load thumbnail picture - + Generate mass data - + Do you really want to generate %1 messages ? - + You are about to add files you're not actually sharing. Do you still want this to happen? - + Edit Channel Post - + About to post un-owned files to a channel. - + @@ -4374,7 +4372,7 @@ p, li { white-space: pre-wrap; } Post Forum Message - + @@ -4384,121 +4382,121 @@ p, li { white-space: pre-wrap; } Subject - + Attach File - + Sign Message - + Forum Post - + Attach files via drag and drop - + You can attach files via drag and drop here in this window - + Start New Thread - + Edit Message - + No Forum - + In Reply to - + RetroShare - + Please set a Forum Subject and Forum Message - + Please choose Signing Id, it is required - + Cancel Forum Message - + Forum Message has not been sent yet! Do you want to discard this message? - + Add Extra File - + No compatible ID for this forum - + None of your identities is allowed to post in this forum. This could be due to the forum being limited to a circle that contains none of your identities, or forum flags requiring a PGP-signed identity. - + Generate mass data - + Do you really want to generate %1 messages ? - + Send - + Post as - + Congrats, you found a bug! - + @@ -4506,87 +4504,87 @@ Do you want to discard this message? Create Chat Lobby - + 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. - + Lobby name: - + Lobby topic: - + Visibility: - + Public (Visible by friends) - + Private (Works on invitation only) - + <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. - + Invited friends - + Create Chat Room - + Put a sensible chat room name here - + Set a descriptive topic here - + Contacts: - + Identity to use: - + @@ -4594,7 +4592,7 @@ Do you want to discard this message? Public Information - + @@ -4604,127 +4602,127 @@ Do you want to discard this message? Location: - + Location ID: - + Software Version: - + Online since: - + Other Information - + Certificate - + Include signatures - + Save Key into a file - + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Error - + Your certificate could not be parsed correctly. Please contact the developers. - + RetroShare - + Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + TextLabel - + PGP fingerprint: - + Node information - + PGP Id : - + Friend nodes: - + Copy certificate to clipboard - + Save certificate to file - + Node - + Create new node... - + show statistics window - + @@ -4732,7 +4730,7 @@ Do you want to discard this message? users - + @@ -4740,38 +4738,38 @@ Do you want to discard 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 Searching for RetroShare Peers - + RetroShare users in DHT (Total DHT users) - + DHT Good - + No peer found in DHT - + @@ -4779,42 +4777,42 @@ Do you want to discard this message? B - + KB - + MB - + GB - + Faster - + Average - + Slower - + File Never Seen - + @@ -4822,42 +4820,42 @@ Do you want to discard this message? Details - + General - + Done - + Active - + Outstanding - + Needs checking - + retroshare link(s) - + retroshare link - + @@ -4867,17 +4865,17 @@ Do you want to discard this message? Rating - + Comments - + File Name - + @@ -4885,123 +4883,123 @@ Do you want to discard this message? Net Status - + Connect Options - + Network Mode - + Nat Type - + Nat Hole - + Peer Address - + Name - + PeerId - + DHT Status - + ConnectLogic - + Connect Status - + Connect Mode - + Request Status - + Cb Status - + RsId - + Bucket - + IP:Port - + Key - + Status Flags - + Found - + Last Sent - + Last Recv - + Relay Mode - + Source - + @@ -5011,207 +5009,207 @@ Do you want to discard this message? Destination - + Class - + Age - + Bandwidth - + IP - + Search IP - + Copy %1 to clipboard - + Unknown NetState - + Offline - + Local Net - + Behind NAT - + External IP - + UNKNOWN NAT STATE - + SYMMETRIC NAT - + DETERMINISTIC SYM NAT - + RESTRICTED CONE NAT - + FULL CONE NAT - + OTHER NAT - + NO NAT - + UNKNOWN NAT HOLE STATUS - + NO NAT HOLE - + UPNP FORWARD - + NATPMP FORWARD - + MANUAL FORWARD - + NET BAD: Unknown State - + NET BAD: Offline - + NET BAD: Behind Symmetric NAT - + NET BAD: Behind NAT & No DHT - + NET WARNING: NET Restart - + NET WARNING: Behind NAT - + NET WARNING: No DHT - + NET STATE GOOD! - + CAUTION: UNVERIFIABLE FORWARD! - + CAUTION: UNVERIFIABLE FORWARD & NO DHT - + Not Active (Maybe Connected!) - + Searching - + Failed - + offline - + Unreachable - + ONLINE - + Direct - + @@ -5221,27 +5219,27 @@ Do you want to discard this message? Disconnected - + Udp Started - + Connected - + Request Active - + No Request - + @@ -5251,34 +5249,34 @@ Do you want to discard this message? RELAY END - + Yourself - + unknown - + unlimited - + Own Relay - + RELAY PROXY - + @@ -5287,27 +5285,27 @@ Do you want to discard this message? %1 secs ago - + %1B/s - + Relays - + 0x%1 EX:0x%2 - + never - + @@ -5315,113 +5313,113 @@ Do you want to discard this message? DHT - + Net Status: - + Network Mode: - + Nat Type: - + Nat Hole: - + Connect Mode: - + Peer Address: - + Unreach: - + Online: - + Offline: - + DHT Peers: - + Disconnected: - + Direct: - + Proxy: - + Relay: - + Filter: - + Search Network - + Peers - + Relay - + DHT Graph - + Proxy VIA - + Relay VIA - + @@ -5429,12 +5427,12 @@ Do you want to discard this message? Waiting outgoing discovery operations - + Waiting incoming discovery operations - + @@ -5442,7 +5440,7 @@ Do you want to discard this message? Start file - + @@ -5452,36 +5450,36 @@ Do you want to discard this message? to - + ignore case - + dd.MM.yyyy - + KB - + MB - + GB - + @@ -5489,12 +5487,12 @@ Do you want to discard this message? Expression Widget - + Delete this expression - + @@ -5502,52 +5500,52 @@ Do you want to discard this message? &New - + Add new Association - + &Edit - + Edit this Association - + &Remove - + Remove this Association - + File type - + Friend Help - + You this - + Associations - + @@ -5555,47 +5553,47 @@ Do you want to discard this message? Chunk map - + Active chunks - + Availability map (%1 active source) - + Availability map (%1 active sources) - + File info - + File name - + Destination folder - + File hash - + File size - + @@ -5603,52 +5601,52 @@ Do you want to discard this message? bytes - + Chunk size - + Number of chunks - + Transferred - + Remaining - + Number of sources - + Chunk strategy - + Transfer type - + Anonymous F2F - + Direct friend transfer / Availability assumed - + @@ -5656,73 +5654,73 @@ Do you want to discard this message? Picture - + Video - + Audio - + Archive - + Program - + CD/DVD-Image - + Document - + RetroShare collection file - + Subtitles - + Nintendo DS Rom - + Patch - + C++ - + Header - + C - + @@ -5730,52 +5728,52 @@ Do you want to discard this message? Friends Directories - + My Directories - + # Files - + Size - + Age - + Friend - + Share Flags - + Directory - + Column %1 - + Row %1 - + @@ -5793,41 +5791,37 @@ Do you want to discard this message? Expand new messages - - - - Forum - 論壇 + Load embedded images - + <html><head/><body><p>This option is costly and it's in the dev's plans to improve it. In the mean time it's disabled by default. If you enable it and long forum posts take a while to display, then disable it again. </p></body></html> - + Load emoticons (costly) - + Tabs - + Open each forum in a new tab - + Forums - 論壇 + @@ -5835,298 +5829,298 @@ Do you want to discard this message? Last Contact - + ID - + Hide Offline Friends - + export friendlist - + export your friendlist including groups - + import friendlist - + import your friendlist including groups - + Show State - + Trusted nodes - + Show Groups - + Group - + Friend - + Edit Group - + Remove Group - + Chat - + Copy certificate link - + Add to group - + Search - + Search ID - + Sort by state - + Profile details - + Deny connections - + Move to group - + Groups - + Remove from group - + Remove from all groups - + Send message to this node - + Node details - + Recommend this node to... - + Expand all - + Collapse all - + Available - + Do you want to remove this Friend? - + 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 your friendlist from - + Select a file for exporting your friendlist to - + XML File (*.xml);;All Files (*) - + Error - + File is not writeable! - + File is not readable! - + Show Items - + IP - + Attempt to connect - + Create new group - + Paste certificate link - + Node - + Remove Friend Node - + Do you want to remove this node? - + Send message to whole group - + Send message - + @@ -6134,42 +6128,42 @@ at least one peer was not added to a group Dialog - + Message: - + Recommend friends - + To - + Please select at least one friend for recommendation. - + Please select at least one friend as recipient. - + Recommendation messages sent! - + A recommendation message was sent to each of the chosen friends! - + @@ -6177,17 +6171,17 @@ at least one peer was not added to a group Confirm Friend Request - + wants to be friend with you on RetroShare - + Unknown (Incoming) Connect Attempt - + @@ -6195,37 +6189,37 @@ at least one peer was not added to a group Search : - + Sort by state - + Filter only connected - + Name - + Search Friends - + Mark all - + Mark none - + @@ -6233,122 +6227,122 @@ at least one peer was not added to a group Edit status message - + Broadcast - + Clear Chat History - + Add Friend - + Add your Avatar Picture - + A - + Set your status message - + Edit your status message - + Browse Message History - + Browse History - + Save Chat History - + Add a new Group - + Delete Chat History - + Deletes all stored and displayed chat history - + Create new Chat lobby - + Choose Font - + Reset font to default - + Keyring - + <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 - + Network graph - + Set your status message here. - + @@ -6356,7 +6350,7 @@ at least one peer was not added to a group Create new Profile - + @@ -6366,160 +6360,160 @@ at least one peer was not added to a group All fields are required with a minimum of 3 characters - + Passwords do not match - + Port - + Use BOB - + This password is for PGP - + You can use it now to create a new node. - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + Options - 選項 + PGP Key Length - + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - + <html><head/><body><p>Please move your mouse around in order to collect as much randomness as possible. A minimum of 20% is needed to create your node keys.</p></body></html> - + Standard node - + TOR/I2P Hidden node - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Use existing profile - + Node name - + <html><head/><body><p>The profile name identifies you over the network.</p><p>It is used by your friends to accept connections from you.</p><p>You can create multiple Retroshare nodes with the</p><p>same profile on different computers.</p><p><br/></p></body></html> - + Export this profle - + <html><head/><body><p>This should 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. </p><p>You can also leave this blank now, but your node will only work if you correctly set the Tor/I2P service address in Options-&gt;Network-&gt;Hidden Service configuration panel.</p></body></html> - + <html><head/><body><p>Identities are used when you write in chat rooms, forums and channel comments. </p><p>They also receive/send email over the Retroshare network. You can create</p><p>a signed identity now, or do it later on when you get to need it.</p></body></html> - + Go! - + TextLabel - + Advanced options - + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + <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> - + Click to create your node and/or profile - + Export profile - + RetroShare profile files (*.asc) - + Profile saved - + @@ -6528,131 +6522,131 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profile not saved - + Your profile was not saved. An error occurred. - + Import profile - + Create new profile and new Retroshare node - + Create new Retroshare node - + Tor/I2P address - + Username - + Chat name - + Password again - + <p>Node creation is disabled until all fields correctly set.</p> - + <p>Node creation is disabled until enough randomness is collected. Please mouve your mouse around until you reach at least 20%.</p> - + I2P instance address with BOB enabled - + I2P instance address - + hidden service address - + RetroShare profile files (*.asc);;All files (*) - + Profile not loaded - + Your profile was not loaded properly: - + New profile imported - + Your profile was imported successfully: - + The GXS nickname is too short. Please input at least %1 characters. - + The GXS nickname is too long. Please reduce the length to %1 characters. - + PGP key pair generation failure - + Profile generation failure - + Missing PGP certificate - + @@ -6660,32 +6654,32 @@ and use the import button to load it Startup - + Start RetroShare when my system starts - + Start minimized - + Start minimized on system start - + For Advanced Users - + Enable Advanced Mode (Restart Required) - + @@ -6695,103 +6689,103 @@ and use the import button to load it Do not show the Quit RetroShare MessageBox - + Auto Login - + Register retroshare:// as URL protocol - + You need administrator rights to change this option. - + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - + Use Local Server to get new arguments. - + <html><head/><body><p>Install RetroShare with a package installer to get</p><p>/usr/share/applications/retroshare.desktop</p></body></html> - + !!!The RetroShare's desktop file is missing or wrong!!! - + Idle - + Idle Time - + seconds - + You have sufficient rights. - + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - + Your RetroShare build has auto-login disabled. - + Error - + Could not add retroshare:// as protocol. - + Could not remove retroshare:// protocol. - + General - + Minimize to Tray Icon - + @@ -6800,44 +6794,44 @@ and use the import button to load it Getting Started - + Invite 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> - + Add Your Friends to RetroShare - + Add 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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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> @@ -6849,31 +6843,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> @@ -6886,118 +6880,118 @@ 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 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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 Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - + Advanced: Open Firewall Port - + Further Help and Support - + Open RS Website - + Open FAQ Wiki - + Open Online Forums - + Email Support - + Email Feedback - + RetroShare Invitation - + Your friend has installed RetroShare, and would like you to try it out. - + You can get RetroShare here: %1 - + RetroShare is a private Friend-2-Friend sharing network. - + forums and channels, all of which are as secure as the file-sharing. - + Here is your friends ID Certificate. - + Cut and paste the text below into your RetroShare client - + and send them your ID Certificate to get securely connected. - + Cut Below Here - + RetroShare Feedback - + RetroShare Support - + It has many features, including built-in chat, messaging, - + @@ -7005,82 +6999,82 @@ p, li { white-space: pre-wrap; } Router Statistics - + GroupBox - + ID - + Identity Name - + Destinaton - + Data status - + Tunnel status - + Stored data size - + Receive time (secs ago) - + Sending time (secs ago) - + Data hash - + Branching factor - + Details - + Unknown Peer - + Pending packets - + Unknown - 未知 + @@ -7088,22 +7082,22 @@ p, li { white-space: pre-wrap; } Managed keys - + Routing matrix ( - + [Unknown identity] - + : Service ID = - + @@ -7111,7 +7105,7 @@ p, li { white-space: pre-wrap; } Show Group Chat - + @@ -7119,7 +7113,7 @@ p, li { white-space: pre-wrap; } [Unknown] - + @@ -7127,27 +7121,27 @@ p, li { white-space: pre-wrap; } Friends - + Family - + Co-Workers - + Other Contacts - + Favorites - + @@ -7155,72 +7149,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - + Directory content is NOT visible to friend nodes - + Directory can be searched anonymously - + Directory cannot be searched anonymously - + Files can be accessed using anonymous tunnels - + Files can be accessed using anonymous & end-to-end encrypted tunnels - + Files cannot be downloaded anonymously - + All friend nodes can see this directory - + Only visible to friend nodes in groups: %1 - + Not visible to friend nodes - + Files can be downloaded (but not searched) anonymously - + Files can be downloaded and searched anonymously - + Files can be searched (but not downloaded) anonymously - + No one can anonymously access/search these files. - + @@ -7233,7 +7227,7 @@ p, li { white-space: pre-wrap; } Hide tabbar with one open tab - + @@ -7241,47 +7235,47 @@ p, li { white-space: pre-wrap; } Share - + Contacts: - + Share channel publish permissions - + You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions. - + Please select at least one peer - + Share forum admin permissions - + 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. - + Share topic admin permissions - + 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. - + @@ -7299,78 +7293,78 @@ p, li { white-space: pre-wrap; } Description - + Search Description - + Sort Descending Order - + Sort Ascending Order - + Sort by Name - + Sort by Popularity - + Sort by Last Post - + Sort by Number of Posts - + Sort by Unread - + You are admin (modify names and description using Edit menu) - + You have been granted as publisher (you can post here!) - + Last Post - + Never - 從未 + Display - + Subscribe to download and read messages - + @@ -7378,37 +7372,37 @@ p, li { white-space: pre-wrap; } and - + and / or - + or - + Name - + Path - + Extension - + Hash - + @@ -7418,57 +7412,57 @@ p, li { white-space: pre-wrap; } Size - + Popularity - + contains - + contains all - + is - + less than - + less than or equal - + equals - + greater than or equal - + greater than - + is in range - + @@ -7477,68 +7471,68 @@ p, li { white-space: pre-wrap; } Channels - + 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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Subscribed Channels - + Popular Channels - + Other Channels - + Select channel download directory - + Disable Auto-Download - + Set download directory - + [Default directory] - + Specify... - + @@ -7556,42 +7550,42 @@ p, li { white-space: pre-wrap; } TextLabel - + Open folder - + Error - + Paused - + Waiting - + Checking - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + @@ -7604,12 +7598,12 @@ p, li { white-space: pre-wrap; } Filename - + Size - + @@ -7619,12 +7613,12 @@ p, li { white-space: pre-wrap; } Published - + Status - + @@ -7632,37 +7626,37 @@ p, li { white-space: pre-wrap; } Create New Channel - + Channel - + Edit Channel - + Add Channel Admins - + Select Channel Admins - + Update Channel - + Create - + @@ -7670,7 +7664,7 @@ p, li { white-space: pre-wrap; } Subscribe to Channel - + @@ -7686,17 +7680,17 @@ p, li { white-space: pre-wrap; } Channel Description - + Loading - + New Channel - + @@ -7709,17 +7703,17 @@ p, li { white-space: pre-wrap; } New Comment: - + Comment Value - + Toggle Message Read Status - + @@ -7730,28 +7724,28 @@ p, li { white-space: pre-wrap; } Play - + Comments - + Edit - 編輯 + Copy RetroShare Link - + Unsubscribe From Channel - + @@ -7772,17 +7766,17 @@ p, li { white-space: pre-wrap; } Channel Feed - + Files - + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - + @@ -7797,33 +7791,33 @@ p, li { white-space: pre-wrap; } 0 - + Comment - + I like this - + I dislike this - + Loading - + Comments - + @@ -7833,12 +7827,12 @@ p, li { white-space: pre-wrap; } Open File - + Play Media - + @@ -7846,23 +7840,23 @@ p, li { white-space: pre-wrap; } Post to Channel - + Add new post - + Loading - + Search channels - + @@ -7877,98 +7871,98 @@ p, li { white-space: pre-wrap; } Message - + Search Message - + Filename - + Search Filename - + No Channel Selected - + Never - 從未 + Public - + Restricted to members of circle " - + Restricted to members of circle - + Your eyes only - + You and your friend nodes - + Disable Auto-Download - + Enable Auto-Download - + Show feeds - + Show files - + Administrator: - + Last Post: - + unknown - + Distribution: - + @@ -7978,12 +7972,12 @@ p, li { white-space: pre-wrap; } Files - + Subscribers - + @@ -7993,7 +7987,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + @@ -8001,7 +7995,7 @@ p, li { white-space: pre-wrap; } Channel Post - + @@ -8009,48 +8003,48 @@ p, li { white-space: pre-wrap; } Details - + Remove Item - 刪除項目 + for identity - + You received a membership request for circle: - + Grant membership request - + Revoke membership request - + You received an invitation for circle: - + Accept invitation - + Received event from unknown Circle: - + @@ -8058,7 +8052,7 @@ p, li { white-space: pre-wrap; } Comment Container - + @@ -8071,7 +8065,7 @@ p, li { white-space: pre-wrap; } Hot - + @@ -8081,22 +8075,22 @@ p, li { white-space: pre-wrap; } Top - + Voter ID: - + Refresh - + Comment - + @@ -8116,17 +8110,17 @@ p, li { white-space: pre-wrap; } UpVotes - + DownVotes - + OwnVote - + @@ -8134,27 +8128,27 @@ p, li { white-space: pre-wrap; } Reply to Comment - + Submit Comment - + Copy Comment - + Vote Up - + Vote Down - + @@ -8162,32 +8156,32 @@ p, li { white-space: pre-wrap; } Make 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: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> - + Signed by - + Comment Signing Error - + You need to create an Identity before you can comment - + @@ -8195,7 +8189,7 @@ before you can comment Create New Forum - + @@ -8205,27 +8199,27 @@ before you can comment Edit Forum - + Update Forum - + Add Forum Admins - + Select Forum Admins - + Create - + @@ -8233,7 +8227,7 @@ before you can comment Subscribe to Forum - + @@ -8249,17 +8243,17 @@ before you can comment Forum Description - + Loading - + New Forum - + @@ -8273,12 +8267,12 @@ before you can comment Subject: - + Unsubscribe To Forum - + @@ -8299,17 +8293,17 @@ before you can comment In Reply to: - + Loading - + Forum Feed - + @@ -8327,7 +8321,7 @@ before you can comment Start new Thread for Selected Forum - + @@ -8337,22 +8331,22 @@ before you can comment Last Post - + New Thread - + Threaded View - + Flat View - + @@ -8376,38 +8370,38 @@ before you can comment Save image - + Loading - + Reply Message - + Previous Thread - + Next Thread - + Download all files - + Next unread - + @@ -8427,17 +8421,17 @@ before you can comment Content - + Search Content - + <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> - + @@ -8449,22 +8443,22 @@ before you can comment Reply - + Start New Thread - + Expand all - + Collapse all - + @@ -8476,7 +8470,7 @@ before you can comment with children - + @@ -8487,7 +8481,7 @@ before you can comment Copy RetroShare Link - + @@ -8502,94 +8496,94 @@ before you can comment [Banned] - + [unknown] - + Public - + Restricted to members of circle " - + Restricted to members of circle - + Only friends nodes in group - + Your eyes only - + Distribution - + Anti-spam - + [ ... Redacted message ... ] - + Anonymous - + signed - + none - + [ ... Missing 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> - + @@ -8602,12 +8596,12 @@ before you can comment RetroShare - + No Forum Selected! - + @@ -8615,144 +8609,144 @@ before you can comment You cant reply to a non-existant Message - + You cant reply to an Anonymous Author - + Original Message - + New thread - + Read status - + Edit - 編輯 + Reply to author with private message - + Give positive opinion - + This will block/hide messages from this person, and notify friend nodes. - + Give neutral opinion - + Doing this, you trust your friends to decide to forward this message or not. - + Give negative opinion - + Show author in people tab - + Author's reputation - + Anonymous/unknown posts forwarded if reputation is positive - + Anonymous posts forwarded if reputation is positive - + Last post - + Never - 從未 + Synchronization - + Storage - + Information for this identity is currently missing. - + You have banned this ID. The message will not be displayed nor forwarded to your friends. - + You have not set an opinion for this person, and your friends do not vote positively: Spam regulation prevents the message to be forwarded to your friends. - + Message will be forwarded to your friends. - + (Latest) - + (Old) - + You cant act on the author to a non-existant Message - + @@ -8762,42 +8756,42 @@ prevents the message to be forwarded to your friends. Sent - + Subject - + On %1, %2 wrote: - + Forum name - + Subscribers - + Posts (at neighbor nodes) - + Description - + By - + @@ -8805,7 +8799,7 @@ prevents the message to be forwarded to your friends. Forum Post - + @@ -8813,7 +8807,7 @@ prevents the message to be forwarded to your friends. <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 are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + @@ -8824,27 +8818,27 @@ prevents the message to be forwarded to your friends. Create Forum - + My Forums - + Subscribed Forums - + Popular Forums - + Other Forums - + @@ -8852,17 +8846,17 @@ prevents the message to be forwarded to your friends. Waiting - + Retrieving - + Loading - + @@ -8871,43 +8865,43 @@ prevents the message to be forwarded to your friends. Name - + Add Icon - + Key recipients can publish to restricted-type group and can view and publish for private-type channels - + Share Publish Key - + check peers you would like to share private publish key with - + Share Key With - + Description - + Message Distribution - + @@ -8915,12 +8909,12 @@ prevents the message to be forwarded to your friends. Public - + Publish Signatures - + @@ -8930,244 +8924,244 @@ prevents the message to be forwarded to your friends. New Thread - + Required - + Encrypted Msgs - + Personal Signatures - + PGP Required - + Signature Required - + If No Publish Signature - + Comments - + Allow Comments - + No Comments - + Spam-protection - + Comments: - + TextLabel - + Distribution: - + Anti Spam: - + Contacts: - + Restricted to circle: - + Limited to your friends - + Allowed - + Disallowed - + Message tracking - + PGP signature required - + Never - 從未 + Only friends nodes in group - + Please add a Name - + PGP signature from known ID required - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback - + Owner: - + Set a descriptive description here - + Info - + ID - + Last Post - + <html><head/><body><p>Messages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html> - + <html><head/><body><p>Messages will spread among Retroshare nodes that host one of the identities listed as member of the circle and who also subscribe the media. Only these nodes will be able to see that this forum/channel/posted media exists. </p></body></html> - + Restricted to Circle - + <html><head/><body><p>Messages will only be distributed to the selected subset of your friend nodes. They will not forward messages with each other, but only use your own node as a central hub to distribute them.</p></body></html> - + Restricted node group - + Posts permissions: - + <html><head/><body><p>This combo box allows you to choose how posts are handled depending on the node the poster belongs to.</p><p><span style=" font-weight:600;">All allowed</span>: all posts are treated equally.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs</span>: anonymous IDs will require a reputation of 0.4 to be received/forwarded.</p><p><span style=" font-weight:600;">Defavor posts from unsigned IDs and IDs from unknown nodes</span>: anonymous IDs and IDs signed by unknown Retroshare nodes will require a reputation of 0.4 to be received/forwarded.</p></body></html> - + All allowed - + Defavor unsigned IDs - + Defavor unsigned IDs and IDs from unknown nodes - + Popularity - + Posts - + @@ -9177,7 +9171,7 @@ prevents the message to be forwarded to your friends. GxsIdLabel - + @@ -9185,32 +9179,32 @@ prevents the message to be forwarded to your friends. Loading - + Todo - + Print - + PrintPreview - + Unsubscribe - + Subscribe - + @@ -9220,74 +9214,74 @@ prevents the message to be forwarded to your friends. Show Details - + Edit Details - + Synchronise posts of last... - + 5 days - + 2 weeks - + 1 month - + 3 months - + 6 months - + 1 year - + Indefinitly - + Store posts for at most... - + Share publish permissions - + Copy RetroShare Link - + @@ -9297,12 +9291,12 @@ prevents the message to be forwarded to your friends. Mark all as unread - + AUTHD - + @@ -9310,12 +9304,12 @@ prevents the message to be forwarded to your friends. No Signature - + Create new Identity - + @@ -9323,60 +9317,60 @@ prevents the message to be forwarded to your friends. Loading - + Not found - + No Signature - + [Banned] - + Authentication - + unknown Key - + anonymous - + Identity&nbsp;name - + Identity&nbsp;Id - + Signed&nbsp;by - + [Unknown] - + @@ -9384,7 +9378,7 @@ prevents the message to be forwarded to your friends. Loading - + @@ -9397,107 +9391,107 @@ prevents the message to be forwarded to your friends. Router Statistics - + GroupBox - + ID - + Destination - + Data status - + Data size - + Data hash - + Sending time (secs ago) - + Group ID - + Gxs Transport Groups: - + Group ID / Author - + Number of messages / Publish TS - + Local size of data - + Subscribed - + Popularity - + Details - + Unknown Peer - + Pending data items - + Unknown - 未知 + Yes - + No - + @@ -9505,42 +9499,42 @@ prevents the message to be forwarded to your friends. Authenticated tunnels: - + Tunnel ID: %1 - + from: %1 - + to: %1 - + status: %1 - + total sent: %1 bytes - + total recv: %1 bytes - + Unknown Peer - + @@ -9549,17 +9543,17 @@ prevents the message to be forwarded to your friends. Drop file error. - + Directory can't be dropped, only files are accepted. - + File not found or file name not accepted. - + @@ -9568,22 +9562,22 @@ prevents the message to be forwarded to your friends. RetroShare Help - + Find: - + Find Previous - + Find Next - + @@ -9593,141 +9587,141 @@ prevents the message to be forwarded to your friends. Whole words only - + Contents - + Help Topics - + Search - + Searching for: - + Found Documents - + Back - + Move to previous page (Backspace) - + Backspace - + Forward - + Move to next page (Shift+Backspace) - + Shift+Backspace - + Home - + Move to the Home page (Ctrl+H) - + Ctrl+H - + Find - + Search for a word or phrase on current page (Ctrl+F) - + Ctrl+F - + Close - + Close Vidalia Help - + Esc - + Supplied XML file is not a valid Contents document. - + Search reached end of document - + Search reached start of document - + Text not found in document - + Found %1 results - + Error Loading Help Contents: - + @@ -9742,59 +9736,59 @@ prevents the message to be forwarded to your 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:'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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> -<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> +</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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-weight:600;">private and secure decentralized communication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Wiki</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare's Forum</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">Retroshare Project Page</span></a></li> +<li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Team Blog</span></a></li> <li style=" font-family:'MS Shell Dlg 2'; 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"><span style=" color:#007af4;">RetroShare Dev Twitter</span></a></li></ul></body></html> - + Authors - + Thanks to - + Translation - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" font-family:'MS Shell Dlg 2'; 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; font-family:'MS Shell Dlg 2'; text-decoration: underline; color:#0000ff;"><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; font-family:'MS Shell Dlg 2'; 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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">RetroShare Website Translators:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"><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:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">&gt;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">German: </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Jan</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Keller</span><span style=" font-family:'MS Shell Dlg 2';"> &lt;</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'MS Shell Dlg 2';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Polish: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> - + License Agreement - + @@ -9803,12 +9797,12 @@ p, li { white-space: pre-wrap; } 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> - + Libraries - + @@ -9816,32 +9810,32 @@ p, li { white-space: pre-wrap; } Opening External Link - + 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. - + Do you want Retroshare to open the link in your Web browser? - + Unable to Open Link - + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - + Error opening help file: - + @@ -9849,114 +9843,114 @@ p, li { white-space: pre-wrap; } Form - 表單 + Did you receive a certificate from a friend? - + Add friends certificate - + Add certificate file - + Share your RetroShare Key - + ... - ... + The text below is your own Retroshare certificate. Send it to your friends - + Open Source cross-platform, private and secure decentralized communication platform. - + Launch startup wizard - + Do you need help with RetroShare? - + Open Web Help - + Copy your Cert to Clipboard - + Save your Cert into a File - + Send via Email - + Invite via WebMail - + Recommend friends to each others - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Welcome to Retroshare!</h1> <p>You need to <b>make friends</b>! After you create a network of friends or join an existing network, you'll be able to exchange files, chat, talk in forums, etc. </p> <div align=center> <IMG align="center" width="%2" src=":/images/network_map.png"/> </div> <p>To do so, copy your certificate on this page and send it to friends, and add your friends' certificate.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange certificates with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + RetroShare Invite - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + Save as... - + RetroShare Certificate (*.rsc );;All Files (*) - + Home - + @@ -9965,32 +9959,32 @@ private and secure decentralized communication platform. Person Details - + Identity Info - + Friends votes: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; 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-family:'Sans'; font-size:9pt;">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.</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:9pt;">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). </span></p></body></html> - + Owner node ID : - + @@ -10000,206 +9994,206 @@ p, li { white-space: pre-wrap; } Owner node name : - + Identity name : - + Identity ID : - + Last used: - + Ban-option: - + Auto-Ban all identities signed by the same node - + Your Avatar Click here to change your avatar - + Send Invite - + Positive votes - + 0 - + Negative votes - + <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: - + 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: - + [unverified] - + Unknown real name - + Anonymous Id - + Identity owned by you, linked to your Retroshare node - + Anonymous identity, owned by you - + Owned by a friend Retroshare node - + Owned by 2-hops Retroshare node - + Owned by unknown Retroshare node - + Anonymous identity - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Thanks, <br> - + @@ -10208,181 +10202,181 @@ p, li { white-space: pre-wrap; } All - + Reputation - + Search - + Anonymous Id - + Create new Identity - + Create new circle - + Persons - + Votes - + Person - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes - + 0 - + Negative votes - + Usage statistics - + Circles - + Circle name - + Membership - + Public Circles - + Personal Circles - + Edit identity - + Delete identity - + Chat with this peer - + Launches a distant chat with this peer - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + @@ -10392,257 +10386,257 @@ 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: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</p> +</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 difference between friend's positive and negative 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 -1, 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 non negative reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 5 days).</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </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> - + 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: - + Anonymous - + ID - + Search ID - + This identity is owned by you - + My own identities - + My contacts - + Show Items - + Owned by myself - + Linked to my node - + Other circles - + Circles I belong to - + Circle ID: - + Visibility: - + Private (only visible to invited members) - + Only visible to full members of circle - + Public - + Your role: - + Administrator (Can edit invite list, and request membership). - + User (Can only request membership). - + Distribution: - + subscribed (Receive/forward membership requests from others and invite list). - + unsubscribed (Only receive invite list). - + Your status: - + Full member (you have access to data limited to this circle) - + Not a member (do not have access to data limited to this circle) - + Identity ID: - + Status: - + Full member - + Invited by admin - + Subscription request pending - + unknown - + Invited - + Subscription pending - + Member - + Edit Circle - + See details - + Request subscription - + Accept circle invitation - + Quit this circle - + Cancel subscribe request - + @@ -10650,294 +10644,294 @@ p, li { white-space: pre-wrap; } for identity - + Revoke this member - + Grant membership - + -This identity has a unsecure fingerprint (It's probably quite old). +This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. These identities will soon be not supported anymore. - + [Unknown node] - + Unverified signature from node - + Unchecked signature - + [unverified] - + Identity owned by you, linked to your Retroshare node - + Identity owned by you, linked to your Retroshare node but not yet validated - + Anonymous identity, owned by you - + Anonymous identity - + Message in chat room %1 - + information - + This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - + Copy identity to clipboard - + Send invite? - + Do you really want send a invite with your Certificate? - + Banned - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit <b>pseudo-anonymous identities</b>, and <b>circles</b>.</p> <p><b>Identities</b> are used to securely identify your data: sign messages in chat lobbies, forum and channel posts, receive feedback using the Retroshare built-in email system, post comments after channel posts, chat using secured tunnels, etc.</p> <p>Identities can optionally be <b>signed</b> by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address.</p> <p><b>Anonymous identities</b> allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity.</p> <p><b>Circles</b> are groups of identities (anonymous or signed), that are shared at a distance over the network. They can be used to restrict the visibility to forums, channels, etc. </p> <p>An <b>circle</b> can be restricted to another circle, thereby limiting its visibility to members of that circle or even self-restricted, meaning that it is only visible to invited members.</p> - + Unknown ID: - + positive - + negative - + No votes from friends - + Negative (Banned by you) - + Positive (according to your friends) - + Negative (according to your friends) - + <b>[No record in current session]</b> - + Channels - + Forums - 論壇 + Posted - + Chat - + Unknown - 未知 + [Unknown] - + Admin signature in service %1 - + Admin signature verification in service %1 - + Creation of author signature in service %1 - + Message/vote/comment - + %1 in %2 tab - + Distant message signature validation. - + Distant message signature creation. - + Signature validation in distant tunnel system. - + Signature in distant tunnel system. - + Update of identity data. - + Generic signature validation. - + Generic signature. - + Generic encryption. - + Generic decryption. - + Membership verification in circle %1. - + Add to Contacts - + Remove from Contacts - + Set positive opinion - + Set neutral opinion - + Set negative opinion - + Distant chat cannot work - + Error code - + Hi,<br>I want to be friends with you on RetroShare.<br> - + @@ -10945,98 +10939,98 @@ These identities will soon be not supported anymore. People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes - + Linked to distant nodes - + Linked to a friend Retroshare node - + Linked to a known Retroshare node - + Linked to unknown Retroshare node - + Chat with this person - + Chat with this person as... - + Distant chat refused with this person. - + Last used: - + +50 Known PGP - + +10 UnKnown PGP - + +5 Anon Id - + Do you really want to delete this identity? - + Owned by - + Node name: - + Node Id : - + Really delete? - + @@ -11044,43 +11038,43 @@ These identities will soon be not supported anymore. Nickname - + Key ID - + PGP Name - + PGP Hash - + PGP Id - + Pseudonym - + New identity - + To be generated - + @@ -11093,38 +11087,38 @@ These identities will soon be not supported anymore. N/A - + Edit identity - + Error getting key! - + Error KeyID invalid - + Unknown GpgId - + Unknown real name - + Create New Identity - + @@ -11139,7 +11133,7 @@ These identities will soon be not supported anymore. TextLabel - + @@ -11148,7 +11142,7 @@ These identities will soon be not supported anymore. RM - + @@ -11159,32 +11153,32 @@ These identities will soon be not supported anymore. Your Avatar Click here to change your avatar - + Set Avatar - + Linked to your profile - + 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. - + The nickname is too short. Please input at least %1 characters. - + The nickname is too long. Please reduce the length to %1 characters. - + @@ -11192,17 +11186,17 @@ These identities will soon be not supported anymore. Name - + KeyId - + GXSId - + @@ -11214,25 +11208,25 @@ These identities will soon be not supported anymore. GXS name: - + PGP name: - + GXS id: - + PGP id: - + @@ -11241,7 +11235,7 @@ These identities will soon be not supported anymore. Message History - + @@ -11257,7 +11251,7 @@ These identities will soon be not supported anymore. Mark all - + @@ -11267,12 +11261,12 @@ These identities will soon be not supported anymore. Clear history - + Send - + @@ -11281,17 +11275,17 @@ These identities will soon be not supported anymore. Save image - + Cannot save the image, invalid filename - + Not an image - + @@ -11300,47 +11294,47 @@ These identities will soon be not supported anymore. Open File - + Open Folder - + Checking... - + Check files - + Recommend in a message to... - + Share on channel... - + Share on forum... - + Set command for opening this file - + Collection - + @@ -11348,17 +11342,17 @@ These identities will soon be not supported anymore. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -11369,7 +11363,7 @@ These identities will soon be not supported anymore. Messenger - + @@ -11379,34 +11373,34 @@ These identities will soon be not supported anymore. SMPlayer - + Quit - + Quick Start Wizard - + RetroShare %1 a secure decentralized communication platform - + Unfinished - + Low disk space warning - + @@ -11415,107 +11409,107 @@ These identities will soon be not supported anymore. RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - + Show/Hide - + Status - + Notify - + Open Messenger - + Open Messages - + Bandwidth Graph - + Applications - + Help - + Minimize - + Maximize - + &Quit - + RetroShare - + %1 new message - + %1 new messages - + Down: %1 (kB/s) - + Up: %1 (kB/s) - + %1 friend connected - + %1 friends connected - + Do you really want to exit RetroShare ? - + Internal Error - + @@ -11530,57 +11524,57 @@ These identities will soon be not supported anymore. Make sure this link has not been forged to drag you to a malicious website. - + Don't ask me again - + It seems to be an old RetroShare link. Please use copy instead. - + The file link is malformed. - + ServicePermissions - + Service permissions matrix - + Statistics - + Show web interface - + The disk space in your - + directory is running low (current limit is - + Really quit ? - + @@ -11589,306 +11583,306 @@ These identities will soon be not supported anymore. Compose - + Contacts - + Paragraph - + Heading 1 - + Heading 2 - + Heading 3 - + Heading 4 - + Heading 5 - + Heading 6 - + Font size - + Increase font size - + Decrease font size - + Bold - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: - + Tags: - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files - + File Name - + Size - + Hash - + Send - + Send this message now - + Reply - + Toggle Contacts View - + Save - + Save this message - + Attach - + Attach File - + Quote - + Add Blockquote - + Send To: - + &Left - + C&enter - + &Right - + &Justify - + 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> - + You have a friend recommendation - + This friend is suggested by - + wants to be friends with you on 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 - + Save Message - + Message has not been Sent. Do you want to save message to draft box? - + Paste RetroShare Link - + Add to "To" - + Add to "CC" - + Add to "BCC" - + Add as Recommend - + Original Message - + @@ -11900,62 +11894,62 @@ Do you want to save message to draft box? To - + Cc - + Sent - + Subject - + On %1, %2 wrote: - + Re: - + Fwd: - + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + @@ -11965,179 +11959,179 @@ Do you want to save message to draft box? &File - + &New - + &Open... - + &Save - + Save &As File - + Save &As Draft - + &Print... - + &Export PDF... - + &Quit - + &Edit - + &Undo - + &Redo - + Cu&t - + &Copy - + &Paste - + &View - + &Contacts Sidebar - + &Insert - + &Image - + &Horizontal Line - + &Format - + Details - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) - + Save as... - + Print Document - + Export PDF - + Message has not been Sent. Do you want to save message ? - + Choose Image - + Image Files supported (*.png *.jpeg *.jpg *.gif) - + Add Extra File - + Hi,<br>I want to be friends with you on RetroShare.<br> - + You have a friend invite - + Respond now: - + Close - + @@ -12147,73 +12141,73 @@ Do you want to save message ? Friend Nodes - + 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: - + [Missing] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: - + @@ -12221,27 +12215,27 @@ Do you want to save message ? Everyone - + Contacts - + Nobody - + Accept encrypted distant messages from - + Reading - + @@ -12251,17 +12245,17 @@ Do you want to save message ? Open messages in - + Tags - + Tags can be used to categorize and prioritize your messages - + @@ -12281,37 +12275,37 @@ Do you want to save message ? Default - + A new tab - + A new window - + Edit Tag - + Distant messages: - + Load embedded images - + Mail - + @@ -12319,7 +12313,7 @@ Do you want to save message ? Sub: - + @@ -12327,7 +12321,7 @@ Do you want to save message ? Message - + @@ -12335,17 +12329,17 @@ Do you want to save message ? Recommended Files - + Download all Recommended Files - + Subject: - + @@ -12360,62 +12354,62 @@ Do you want to save message ? Cc: - + Bcc: - + Tags: - + Send Invite - + File Name - + Size - + Hash - + Print - + Print Preview - + Confirm %1 as friend - + Add %1 as friend - + No subject - + @@ -12425,48 +12419,48 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + Download all - + Print Document - + Save as... - + HTML-Files (*.htm *.html);;All Files (*) - + Load images always for this message - + Hide the attachment pane - + Show the attachment pane - + @@ -12474,47 +12468,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Forward - + Remove selected message - + @@ -12524,81 +12518,81 @@ Do you want to save message ? Print selected message - + Print - + Display - + Tags - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + &File - + Save &As File - + &Print... - + Print Preview... - + &Quit - + @@ -12607,47 +12601,47 @@ Do you want to save message ? New Message - + Compose - + Reply to selected message - + Reply - + Reply all to selected message - + Reply all - + Forward selected message - + Foward - + Remove selected message - + @@ -12657,17 +12651,17 @@ Do you want to save message ? Print selected message - + Print - + Display - + @@ -12676,7 +12670,7 @@ Do you want to save message ? Tags - + @@ -12684,7 +12678,7 @@ Do you want to save message ? Inbox - + @@ -12692,18 +12686,18 @@ Do you want to save message ? Outbox - + Draft - + Sent - + @@ -12711,86 +12705,86 @@ Do you want to save message ? Trash - + Total Inbox: - + Folders - + Quick View - + Print... - + Print Preview - + Buttons Icon Only - + Buttons Text Beside Icon - + Buttons with Text - + Buttons Text Under Icon - + Set Text Under Icon - + Save As... - + Reply to Message - + Reply to All - + Forward Message - + Subject - + @@ -12809,58 +12803,58 @@ Do you want to save message ? Content - + Click to sort by attachments - + Click to sort by subject - + Click to sort by read - + Click to sort by from - + Click to sort by date - + Click to sort by tags - + Click to sort by star - + Forward selected Message - + Search Subject - + Search From - + @@ -12870,47 +12864,47 @@ Do you want to save message ? Search Content - + Search Tags - + Attachments - + Search Attachments - + <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 - + System - + Open in a new window - + Open in a new tab - + @@ -12925,7 +12919,7 @@ Do you want to save message ? Add Star - + @@ -12935,59 +12929,59 @@ Do you want to save message ? Edit as new - + Remove Messages - + Remove Message - + Undelete - + Empty trash - + 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. - + No system messages available. - + To - + Click to sort by to - + This message goes to a distant person. - + @@ -12996,37 +12990,37 @@ Do you want to save message ? Total: - + Messages - + Click to sort by signature - + This message was signed and the signature checks - + This message was signed but the signature doesn't check - + This message comes from a distant person. - + Mail - + @@ -13034,17 +13028,17 @@ Do you want to save message ? RetroShare Messenger - + Add a Friend - + Share files for your friends - + @@ -13052,27 +13046,27 @@ Do you want to save message ? Paste as plain text - + Spoiler - + Select text to hide, then push this button - + Paste RetroShare Link - + Paste my certificate link - + @@ -13080,27 +13074,27 @@ Do you want to save message ? Send Invite - + Reply to Message - + Reply Message - + Delete Message - + Play Media - + @@ -13116,32 +13110,32 @@ Do you want to save message ? from - + Reply to invite - + Message From - + Sent Msg - + Draft Msg - + Pending Msg - + @@ -13151,12 +13145,12 @@ Do you want to save message ? Send invite? - + Do you really want send a invite with your Certificate? - + @@ -13164,52 +13158,52 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown - + Offline - + Nasty Firewall - + DHT Disabled and Firewalled - + Network Restarting - + Behind Firewall - + DHT Disabled - + RetroShare Server - + Forwarded Port - + @@ -13217,107 +13211,107 @@ Do you want to save message ? Filter: - + Search Network - + Name - + Clear - + Set Tabs Right - + Set Tabs North - + Set Tabs South - + Set Tabs Left - + Set Tabs Rounded - + Set Tabs Triangular - + Add Friend - + Copy My Key to Clipboard - + Export My Key - + Create New Profile - + Create a new Profile - + Peer ID - + Remove unused keys... - + Clean keyring - + - 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. - + Keyring info - + @@ -13325,7 +13319,7 @@ Notes: Your old keyring will be backed up. For security, your keyring was previously backed-up to file - + @@ -13335,53 +13329,49 @@ For security, your keyring was previously backed-up to file Cannot delete secret keys - + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - - - - Never - 從未 + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - + Export/create a new node - + Trusted keys only - + Search name - + Search peer ID - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: - + @@ -13389,7 +13379,7 @@ Reported error: Network - + @@ -13397,22 +13387,22 @@ Reported error: Redraw - + Friendship level: - + Edge length: - + Freeze - + @@ -13420,7 +13410,7 @@ Reported error: New Tag - + @@ -13430,12 +13420,12 @@ Reported error: Choose color - + OK - + @@ -13448,7 +13438,7 @@ Reported error: Log entries - + @@ -13458,32 +13448,32 @@ Reported error: Remove All - + This is a test. - + Newest on top - + Oldest on top - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The Log 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> - + Log - + @@ -13491,12 +13481,12 @@ Reported error: News Feed - + Channels - + @@ -13506,12 +13496,12 @@ Reported error: Blogs - + Security - + @@ -13522,189 +13512,189 @@ Reported error: Chat Room - + Systray Icon - + Message - + Connect attempt - + Toasters - + Friend Connect - + Ip security - + Friend Connected - + Circles - + Links - + Mails - + Chats - + New Message - + Download completed - + Private Chat - + Group Chat - + Chat rooms - + Chat Rooms - + Count occurrences of my current identity - + Count occurrences of any of the following texts (separate by newlines): - + Checked, if the identity and the text above occurrences must be in the same case to trigger count. - + Case sensitive - 區分大小寫 + Position - + X Margin - + Y Margin - + Systray message - + Group chat - + Combined - + Blink - + <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 - + Top Right - + Bottom Left - + Bottom Right - + Notify - + Disable All Toasters - + Disable All Toaster temporarily - + @@ -13714,12 +13704,12 @@ Reported error: Systray - + Count all unread messages - + @@ -13727,57 +13717,57 @@ Reported error: Passphrase required - + You need to sign your node's certificate. - + You need to sign your forum/chatrooms identity. - + Wrong password ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable - + 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. - + Please check your system clock. - + Examining shared files... - + Hashing file - + Saving file index... - + @@ -13787,23 +13777,23 @@ Reported error: This is a test. - + Unknown title - + Encrypted message - + 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). - + @@ -13811,7 +13801,7 @@ Reported error: Friend Online - + @@ -13819,41 +13809,41 @@ Reported error: Normal Mode - + No Anon D/L - + Gaming Mode - + Low Traffic - + - 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 - + <p>Warning: This Operating mode disables the tunneling service. This means you can use distant chat not anonymously download files and the mail service will be slower.</p><p>This state will be saved after restart, so do not forget that you changed it!</p> - + Turtle routing disabled! - + @@ -13861,42 +13851,42 @@ Reported error: Dialog - + Profile info - + Name : - + 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: - + <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 - + @@ -13906,264 +13896,264 @@ Reported error: No trust - + Marginal - + Full - + Ultimate - + This profile has signed your own profile key - + Key signatures : - + <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;"> +</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 key - + PGP key - + These options apply to all nodes of the profile: - + <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 - + Below is the node's profile key in PGP ASCII format. It identifies all nodes of the same profile. A "Retroshare certificate" that you can exchange in order to make friends, is in the the "details" of each separate node. - + <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 - + Options - 選項 + <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. This setting is applied to all locations of the same node.</p></body></html> - + Use as direct source, when available - + <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. Applied to all locations of the same node.</p></body></html> - + Auto-download recommended files from this node - + <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. Applies to all locations of the same node.</p></body></html> - + Require white list clearance - + Max upload speed (0=unlimited) - + Max download speed (0=unlimited) - + kB/s - + RetroShare - + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) - + Warning: In your File-Transfer option, you select allow direct download to Yes. - + Warning: In your File-Transfer option, you select allow direct download to No. - + 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. - + Your trust in this peer is ultimate - + Your trust in this peer is full. - + Your trust in this peer is marginal. - + Your trust in this peer is none. - + This key has signed your own PGP key - + <p>This PGP key (ID= - + You have chosen to accept connections from Retroshare nodes signed by this key. - + You are currently not allowing connections from Retroshare nodes signed by this key. - + Signature Failure - + Maybe password is wrong - + You haven't set a trust level for this key. - + Retroshare profile - + This is your own PGP key, and it is signed by : - + This key is signed by : - + @@ -14184,12 +14174,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Chat - + Start Chat - + @@ -14210,72 +14200,72 @@ Warning: In your File-Transfer option, you select allow direct download to No. Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Time offset: - + Write Message - + Friend - + Friend Connected - + Connect Attempt - + Friend of Friend - + Friend Time Offset - + Peer - + @@ -14288,7 +14278,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown Peer - + @@ -14298,7 +14288,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Send Message - + @@ -14306,17 +14296,17 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friends: 0/0 - + Online Friends/Total Friends - + Friends - + @@ -14326,53 +14316,53 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Drag your circles or people to each other. - + Internal - + Chat with this person - + Chat with this person as... - + Send message to this person - + Person details - + Distant chat cannot work - + Distant chat refused with this person. - + Error code - + @@ -14380,68 +14370,68 @@ Warning: In your File-Transfer option, you select allow direct download to No. People - + Reputation - + <html><head/><body><p>Anyone in your contact list will automatically have a positive opinion if not set. This allows to automatically raise reputations of used nodes. </p></body></html> - + automatically give "Positive" opinion to my contacts - + Difference in votes (+/-) to rate an ID negatively: - + <html><head/><body><p>When an identity receives more negative votes than positive votes, it switches from &quot;Neutral&quot; to &quot;Negative (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + <html><head/><body><p>When an identity receives more positive votes than negative votes, it switches from &quot;Neutral&quot; to &quot;Positive (according to your friends)&quot;. By default, a one-vote difference is enough, but you can make this harder to happen by selecting a higher number here.</p></body></html> - + Difference in votes (+/-) to rate an ID positively: - + Delete banned identities after (0 means indefinitely): - + Reset reputation of banned identities after (0 means never): - + <html><head/><body><p>Banned identities are not stamped and therefore lose activity. They get deleted automatically after a finit period of time.</p></body></html> - + days - + <html><head/><body><p>In order to prevent deleted banned IDs to come back because they are used in e.g. forums or channels, banned identities are kept in a list for some time. After that, they are &quot;cleared&quot; from the banning list, and will be downloaded again as unbanned if used in forus, chat rooms, etc.</p></body></html> - + @@ -14457,47 +14447,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. PhotoShare - + Photo - + TextLabel - + Comment - + Summary - + Caption - + Where: - + Photo Title: - + When - + @@ -14507,12 +14497,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Add Comment - + Write a comment... - + @@ -14525,34 +14515,34 @@ Warning: In your File-Transfer option, you select allow direct download to No. TextLabel - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -14565,53 +14555,53 @@ p, li { white-space: pre-wrap; } Create Album - + View Album - + Subscribe To Album - + Slide Show - + My Albums - + Subscribed Albums - + Shared Albums - + View Photo - + PhotoShare - + Please select an album before requesting to edit it! - + @@ -14619,53 +14609,53 @@ requesting to edit it! Album Name - + Image - + Show/Hide Details - + << - + Stop - + >> - + Close - + Start - + Start Slide Show - + Stop Slide Show - + @@ -14681,51 +14671,51 @@ requesting to edit it! TextLabel - + Show more details about this plugin - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + Enable this plugin (restart required) - + Enable - + Disable this plugin (restart required) - + Disable - + Launch configuration panel, if provided by the plugin - + Configure - + @@ -14735,22 +14725,22 @@ p, li { white-space: pre-wrap; } File name: - + File hash: - + Status: - + will be enabled after your restart RetroShare. - + @@ -14758,37 +14748,37 @@ p, li { white-space: pre-wrap; } base folder %1 doesn't exist, default load failed - + Error: instance '%1' can't create a widget - + Error: failed to remove file %1 (uninstalling plugin '%2') - + Error (uninstall): no plugin with name '%1' found - + Error (installation): plugin file %1 doesn't exist - + Error: no plugin with name '%1' found - + Error: can't copy %1 to %2 - + @@ -14796,22 +14786,22 @@ p, li { white-space: pre-wrap; } Install New Plugin... - + Open Plugin to install - + Plugins (*.so *.dll) - + Widget for plugin %1 not found on plugins frame - + @@ -14819,27 +14809,27 @@ p, li { white-space: pre-wrap; } Authorize all plugins - + Plugin look-up directories - + Plugin disabled. Click the enable button and restart Retroshare - + [disabled] - + No API number supplied. Please read plugin development manual. - + @@ -14848,37 +14838,37 @@ 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. - + Unknown status. - + @@ -14886,18 +14876,18 @@ p, li { white-space: pre-wrap; } be checked for the hash. However, in normal times, checking the hash protects you from 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 - + @@ -14905,7 +14895,7 @@ malicious behavior of crafted plugins. Popularity - + @@ -14913,17 +14903,17 @@ malicious behavior of crafted plugins. Clear offline messages - + Hide Avatar - + Show Avatar - + @@ -14931,36 +14921,36 @@ malicious behavior of crafted plugins. Avatar - + Set your Avatar Picture - + Dock tab - + Undock tab - + Set Chat Window Color - + Set window on top - + @@ -14968,32 +14958,32 @@ malicious behavior of crafted plugins. Remote status unknown. - + Can't send message immediately, because there is no tunnel available. - + The person you are talking to has deleted the secured chat tunnel. - + The chat partner deleted the secure tunnel, messages will be delivered as soon as possible - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - + Kill the tunnel? - + @@ -15001,47 +14991,47 @@ malicious behavior of crafted plugins. Signed by: - + Notes - + RetroShare - + Please create or choose a Signing Id first - + Submit Post - + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Submit - + Submit a new Post - + Please add a Title - + @@ -15051,7 +15041,7 @@ malicious behavior of crafted plugins. Link - + @@ -15059,42 +15049,42 @@ malicious behavior of crafted plugins. Posted Links - + <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 are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Create Topic - + My Topics - + Subscribed Topics - + Popular Topics - + Other Topics - + Links - + @@ -15102,37 +15092,37 @@ malicious behavior of crafted plugins. Posted Topic - + Add Topic Admins - + Select Topic Admins - + Create New Topic - + Edit Topic - + Update Topic - + Create - + @@ -15140,7 +15130,7 @@ malicious behavior of crafted plugins. Subscribe to Posted - + @@ -15156,17 +15146,17 @@ malicious behavior of crafted plugins. Posted Description - + Loading - + New Posted - + @@ -15179,40 +15169,40 @@ malicious behavior of crafted plugins. 0 - + Site - + Comments - + Comment - + Vote up - + Vote down - + \/ - + @@ -15227,17 +15217,17 @@ malicious behavior of crafted plugins. New Comment: - + Comment Value - + Toggle Message Read Status - + @@ -15247,12 +15237,12 @@ malicious behavior of crafted plugins. Loading - + By - + @@ -15265,7 +15255,7 @@ malicious behavior of crafted plugins. Hot - + @@ -15275,37 +15265,37 @@ malicious behavior of crafted plugins. Top - + Today - + Yesterday - + This Week - + This Month - + This Year - + Submit a new Post - + @@ -15315,12 +15305,12 @@ malicious behavior of crafted plugins. RetroShare - + Please create or choose a Signing Id before Voting - + @@ -15330,7 +15320,7 @@ malicious behavior of crafted plugins. 1-10 - + @@ -15338,17 +15328,17 @@ malicious behavior of crafted plugins. Tabs - + Open each topic in a new tab - + Links - + @@ -15356,7 +15346,7 @@ malicious behavior of crafted plugins. Posted - + @@ -15364,37 +15354,37 @@ malicious behavior of crafted plugins. RetroShare Message - Print Preview - + Print - + &Print... - + Page Setup... - + Zoom In - + Zoom Out - + &Close - + @@ -15403,52 +15393,52 @@ malicious behavior of crafted plugins. Profile Manager - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'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 friend nodes to accept you automatically.</p></body></html> - + Name - + Email - + GID - + Export Identity - + RetroShare Identity files (*.asc) - + Identity saved - + @@ -15457,67 +15447,67 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Identity not saved - + Your identity was not saved. An error occurred. - + Import Identity - + Identity not loaded - + Your identity was not loaded properly: - + New identity imported - + Your identity was imported successfully: - + Select Trusted Friend - + Certificates (*.pqi *.pem) - + Full keys available in your keyring: - + Export selected key - + You can use it now to create a new node. - + @@ -15526,22 +15516,22 @@ and use the import button to load it Edit status message - + Copy Certificate - + Profile Manager - + Public Information - + @@ -15551,73 +15541,73 @@ and use the import button to load it Location: - + Peer ID: - + Number of Friends: - + Version: - + Online since: - + Other Information - + My Address - + Local Address: - + External Address: - + Dynamic DNS: - + Addresses list: - + RetroShare - + Sorry, create certificate failed - + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - + @@ -15625,51 +15615,51 @@ and use the import button to load it Post From: - + Account 1 - + Account 2 - + Account 3 - + Add to Pulse - + filter - + URL Adder - + Display As - + URL - + @@ -15679,7 +15669,7 @@ and use the import button to load it Post Pulse to Wire - + @@ -15708,119 +15698,119 @@ and use the import button to load it Confirmation - + Do you want this link to be handled by your system? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - + Warning: Retroshare is about to ask your system to open this file. - + Before you do so, please make sure that this file does not contain malicious executable code. - + Identity added to People - + The identity was added to people. You can now chat with it, send messages to it, etc. - + Identity cannot be added to People - + The identity was not added to people. Some error occured. The link is probably corrupted. - + %1 of %2 RetroShare link processed. - + %1 of %2 RetroShare links processed. - + File added - + Files added - + File exist - + Files exist - + Friend added - + Friends added - + Friend exist - + Friends exist - + Friend not added - + Friends not added - + Friend not found - + Friends not found - + @@ -15830,253 +15820,253 @@ and open the Make Friend Wizard. Forums not found - + Forum message not found - + Forum messages not found - + Channel not found - + Channels not found - + Channel message not found - + Channel messages not found - + Posted not found - + Posted message not found - + Posted messages not found - + Recipient not accepted - + Click to browse/download this file collection - + %1 (%2) - + Identity link (name=%1, ID=%2) - + %1 (%2 files, %3) - + Recipients not accepted - + Unkown recipient - + Unkown recipients - + Chat room not found - + Malformed links - + Invalid links - + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - + Result - + Unable to make path - + Unable to make path: - + Failed to process collection file - + Deny friend - + Make friend - + Peer details - + File Request canceled - + 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. - + 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> - + RetroShare - + Initialization failed. Wrong or missing installation of PGP. - + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - + Tor cannot be started on your system: - + Cannot start Tor - + Sorry but Tor cannot be started on your system! The error reported is:" - + Cannot start a hidden tor service! - + It was not possible to start a hidden service. - + Multiple instances - + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - + Distant peer has closed the chat - + Tunnel is pending... Messages will be delivered as soon as possible - + Secured tunnel is working. Messages are delivered immediately! - + @@ -16084,27 +16074,27 @@ The error reported is:" Reported error is: %2 - + Click to send a private message to %1 (%2). - + %1 (%2, Extra - Source included) - + Click this link to send a private message to %1 (%2) - + RetroShare Certificate (%1, @%2) - + @@ -16114,276 +16104,276 @@ Reported error is: TR up - + TR dn - + Data up - + Data dn - + Data forward - + You appear to have nodes associated to DSA keys: - + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + enabled - + disabled - + Move IP %1 to whitelist - + Whitelist entire range %1 - + whitelist entire range %1 - + %1 seconds ago - + %1 minute ago - + %1 minutes ago - + %1 hour ago - + %1 hours ago - + %1 day ago - + %1 days ago - + Subject: - + Participants: - + Auto Subscribe: - + Id: - + Security: no anonymous IDs - + Join chat room - + 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! - + Indefinitely - + 5 days - + 2 weeks - + 1 month - + 2 month - + 6 month - + 1 year - + days - + Processing - + Choosing group - + Creating receipt - + Signing receipt - + Serializing - + Creating payload - + Encrypting payload - + Publishing - + Waiting for receipt - + Receipt received - + Receipt signature failed - + Encryption failed - + Unknown - 未知 + Click to pause the hashing process - + [Hashing is paused] - + Click to resume the hashing process - + @@ -16391,19 +16381,19 @@ Security: no anonymous IDs Quick 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; } -</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> @@ -16412,7 +16402,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> - + @@ -16420,7 +16410,7 @@ p, li { white-space: pre-wrap; } Next > - + @@ -16429,73 +16419,73 @@ p, li { white-space: pre-wrap; } Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. - + Choose your download speed limit: - + KB/s - + Choose your upload speed limit: - + Connection : - + Automatic (UPnP) - + Firewalled - + Manually forwarded port - + Discovery : - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + @@ -16503,35 +16493,35 @@ 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; } -</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> - + Directory - + Network Wide - + Browseable - + @@ -16546,110 +16536,110 @@ p, li { white-space: pre-wrap; } Automatically share incoming directory (Recommended) - + 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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> - + Do not show a message when Closing RetroShare - + Start Minimized - + Start RetroShare when my System Starts. - + Start minimized on system start - + Finish - + Select A Folder To Share - + Shared Directory Added! - + Warning! - + Browsable - + Universal - + If checked, the share is anonymously shared to anybody. - + If checked, the share is browsable by your friends. - + @@ -16657,12 +16647,12 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Do you really want to stop sharing this directory ? - + @@ -16670,17 +16660,17 @@ p, li { white-space: pre-wrap; } %1 KB - + %1 MB - + %1 GB - + @@ -16693,12 +16683,12 @@ p, li { white-space: pre-wrap; } The loading of embedded images is blocked. - + Load images - + @@ -16706,52 +16696,52 @@ p, li { white-space: pre-wrap; } Allowed by default - + Denied by default - + Enabled for this peer - + Disabled for this peer - + Enabled by remote peer - + Disabled by remote peer - + Globally switched Off - + Service name: - + Peer name: - + Peer Id: - + @@ -16759,17 +16749,17 @@ p, li { white-space: pre-wrap; } Tree View Options - + Show column... - + [no title] - + @@ -16777,17 +16767,17 @@ p, li { white-space: pre-wrap; } Down - + Up - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + @@ -16795,7 +16785,7 @@ p, li { white-space: pre-wrap; } Download... - + @@ -16805,12 +16795,12 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - + Collection - + @@ -16818,22 +16808,22 @@ p, li { white-space: pre-wrap; } [All friend nodes] - + Only - + NEW - + This node hasn't sent any directory information yet. - + @@ -16841,22 +16831,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + IP address is blacklisted - + IP address is not whitelisted - + IP address accepted - + @@ -16869,33 +16859,33 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Remove IP from whitelist - + Add IP to blacklist - + Remove IP from blacklist - + Only IP - + Entire range - + @@ -16903,32 +16893,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - + File already exists. - + What do you want to do? - + Overwrite - + Merge - + Cancel - 取消 + @@ -16936,27 +16926,27 @@ p, li { white-space: pre-wrap; } Collection - + File name : - + Total size : - + Destination: - + Right click to change download directory - + @@ -16967,39 +16957,39 @@ p, li { white-space: pre-wrap; } Download! - + File - + Size - + Hash - + Bad filenames have been cleaned - + 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. - + Selected files : - + @@ -17010,144 +17000,144 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <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>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>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + Remove Duplicate - + Save - + Collection Editor - + File Path - + File Count - + Real Size: Waiting child... - + Real File Count: Waiting child... - + This is a directory. Double-click to expand it. - + Download files - + Specify... - + Choose directory - + Real Size=%1 - + Real File Count=%1 - + Save Collection File. - + What do you want to do? - + Overwrite - + Merge - + Warning, selection contains more than %1 items. - + Do you want to remove them and all their children, too? - + Do you want to remove this file from the list? - + New Directory - + Enter the new directory's name - + <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> - + 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> - + @@ -17156,17 +17146,17 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Cannot open file %1 - + Error parsing xml file - + Open collection file - + @@ -17174,25 +17164,21 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Collection files - + Create collection file - + 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. - - - - Cancel - 取消 + @@ -17201,119 +17187,119 @@ If you believe it is correct, remove the corresponding line from the file and re Name i.e: file name - + Size i.e: file size - + Completed - + Speed i.e: Download speed - + Progress / Availability i.e: % downloaded - + Sources i.e: Sources - + Status - + Speed / Queue position - + Remaining - + Download time i.e: Estimated Time of Arrival / Time left - + Hash - + Last Time Seen i.e: Last Time Receiced Data - + Path i.e: Where file is saved - + Failed - + Okay - + Waiting - + Downloading - 下載中 + Complete - + Queued - + Paused - + Checking... - + Unknown - 未知 + @@ -17321,7 +17307,7 @@ If you believe it is correct, remove the corresponding line from the file and re Invalid format - + @@ -17329,134 +17315,134 @@ If you believe it is correct, remove the corresponding line from the file and re Resets ALL stored RetroShare settings. - + Sets the directory RetroShare uses for data files. - + filename - + Sets the name and location of RetroShare's logfile. - + level - + Sets the verbosity of RetroShare's logging. - + style - + Sets RetroShare's interface style. - + stylesheet - + Sets RetroShare's interface stylesheets. - + language - + Sets RetroShare's language. - + Unable to open log file '%1': %2 - + Invalid operating mode specified: - + built-in - + Could not create data directory: %1 - + Revision - + opmode - + Sets RetroShare's operating mode. - + RsLinkURL - + Open RsLink with protocol retroshare:// - + Open RsFile with or without arg. - + RetroShare GUI Usage Information - + Invalid language code specified: - + Invalid GUI style specified: - + Invalid log level specified: - + @@ -17465,7 +17451,7 @@ If you believe it is correct, remove the corresponding line from the file and re Registry Access Error. Maybe you need Administrator right. - + @@ -17481,98 +17467,98 @@ If you believe it is correct, remove the corresponding line from the file and re Enter a keyword here (at least 3 char long) - + Start Search - + Search - + Advanced Search - + Advanced - + Search inside "browsable" files of your friends - + Browsable files - + Multi-hop search at distance 6 in the network (always reports available files) - + Distant - + Include files from your own file list in the search result - + Own files - + Close all Search Results - + Clear - + KeyWords - + Results - + Search Id - + Filename - + Size - + Sources - + @@ -17582,87 +17568,87 @@ If you believe it is correct, remove the corresponding line from the file and re Age - + Hash - + Filter: - + Filter Search Result - + Max results: - + Any - + Archive - + Audio - + CD-Image - + Document - + Picture - + Program - + Video - + Directory - + Download Selected - + Download selected - + File Name - + @@ -17673,12 +17659,12 @@ If you believe it is correct, remove the corresponding line from the file and re Copy RetroShare Link - + Send RetroShare Link - + @@ -17688,24 +17674,24 @@ If you believe it is correct, remove the corresponding line from the file and re Skipping Local Files - + Sorry - + This function is not yet implemented. - + Search again - + @@ -17715,7 +17701,7 @@ If you believe it is correct, remove the corresponding line from the file and re Remove All - + @@ -17726,37 +17712,37 @@ If you believe it is correct, remove the corresponding line from the file and re New RetroShare Link(s) - + Open Folder - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Collection - + @@ -17764,7 +17750,7 @@ If you believe it is correct, remove the corresponding line from the file and re Peer details - + @@ -17780,29 +17766,29 @@ If you believe it is correct, remove the corresponding line from the file and re IP address: - + Peer ID: - + Location: - + Peer Name: - + Unknown Peer - + @@ -17812,33 +17798,33 @@ If you believe it is correct, remove the corresponding line from the file and re but reported: - + Wrong external ip address reported - + IP address %1 was added to the whitelist - + <p>This is the external IP your Retroshare node thinks it is using.</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> - + <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> - + @@ -17846,32 +17832,32 @@ If you believe it is correct, remove the corresponding line from the file and re wants to be friend with you on RetroShare - + Accept Friend Request - + Peer details - + Deny friend - + Chat - + Start Chat - + @@ -17892,62 +17878,62 @@ If you believe it is correct, remove the corresponding line from the file and re Peer ID: - + Trust: - + Location: - + IP Address: - + Connection Method: - + Status: - + Write Message - + Connect Attempt - + Connection refused by remote peer - + Unknown (Incoming) Connect Attempt - + Unknown (Outgoing) Connect Attempt - + Unknown Security Issue - + @@ -17956,7 +17942,7 @@ If you believe it is correct, remove the corresponding line from the file and re Unknown Peer - + @@ -17966,32 +17952,32 @@ If you believe it is correct, remove the corresponding line from the file and re Do you want to remove this Friend? - + Certificate has wrong signature!! This peer is not who he claims to be. - + Missing/Damaged certificate. Not a real Retroshare user. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= - + Missing/Damaged SSL certificate for key - + @@ -17999,107 +17985,107 @@ If you believe it is correct, remove the corresponding line from the file and re Network Configuration - + Network Mode - + Automatic (UPnP) - + Firewalled - + Manually Forwarded Port - + Public: DHT & Discovery - + Private: Discovery Only - + Inverted: DHT Only - + Dark Net: None - + Local Address - + NAT - + External Address - + Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: - + 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. - + Allow RetroShare to ask my ip to these websites: - + @@ -18108,89 +18094,89 @@ behind a firewall or a VPN. kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - + Discovery Off - + Hidden - See Config - + I2P Address - + I2P incoming ok - + Points at: - + Tor incoming ok - + incoming ok - + Proxy seems to work. - + I2P proxy is not enabled - + BOB is running and accessible - + BOB is not accessible! Is it running? - + @@ -18199,295 +18185,295 @@ behind a firewall or a VPN. When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + client - + server - + unknown - + BOB is processing a request - + connectivity check - + generating key - + starting up - + shuting down - + BOB is processing a request: %1 - + BOB is broken - + BOB encountered an error: - + BOB tunnel is running - + BOB is working fine: tunnel established - + BOB tunnel is not running - + BOB is inactive: tunnel closed - + request a new server key - + load server key from base64 - + stop BOB tunnel first to generate a new key - + stop BOB tunnel first to load a key - + stop BOB tunnel first to disable BOB - + 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> - + Clear - + 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> - + WARNING: These values don't take into account the Relays. - + 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] -> Next -> 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] -> Next -> 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? - + Automatic I2P/BOB - + Enable I2P BOB - changing this requires a restart to fully take effect - + enableds advanced settings - + advanced mode - + I2P Basic Open Bridge - + I2P Instance address - + 127.0.0.1 - + I2P proxy port - + BOB accessible - + Address - + .b32.i2p - + generate new - + Tunnel length (in/out) - + Tunnel quantity (in/out) - + Tunnel variance (in/out) - + <html><head/><body><p>Server Key - When a key it set it will be used to setup a hidden<br/>service for I2P. Otherwise only a client tunnel is created.</p></body></html> - + load key - + Start - + Restart - + Stop - + BOB status - + Incoming - + <html><head/><body><p>Setup your hidden address (and port if needed)</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> - + @@ -18501,276 +18487,276 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 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. - + Relay - + Enable Relay Connections - + Use Relay Servers - + Relay options - + Number - + Bandwidth per link - + Total Bandwidth - + Friends - + Friends of Friends - + General - + Total: - + Warning: This bandwidth adds up to the max bandwidth. - + Relay Server Setup - + Add Server - + Server DHT Key - + Remove Server - + - <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>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> - + Network - + IP Filters - + Activate IP filtering - + IP blacklist - + IP range - + Status - + Origin - + Reason - + Comment - + IPs - + IP whitelist - + 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>Enter any comment you'd like</p></body></html> - + Add to blacklist - + Add to whitelist - + Hidden Service Configuration - + <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 - + 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 - + IP Range - + Reported by DHT for IP masquerading - + Range made from %1 collected addresses - + @@ -18783,82 +18769,82 @@ If you have issues connecting over Tor check the Tor logs too. 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> - + <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> - + Ban every IP reported by your friends - + <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> - + Ban every masquerading IP reported by your DHT - + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + Automatically ban ranges of DHT masquerading IPs starting at - + Outgoing Manual Tor/I2P - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. <br/>If you prefer to use BOB to automatically manage I2P check the other tab.</p></body></html> - + Tor Socks Proxy - + Tor outgoing Okay - + Tor proxy is not enabled - + @@ -18866,27 +18852,27 @@ If you have issues connecting over Tor check the Tor logs too. Service permissions - + Service Permissions - + Use as direct source, when available - + Auto-download recommended files - + Require whitelist - + @@ -18894,27 +18880,27 @@ If you have issues connecting over Tor check the Tor logs too. ServicePermissions - + Reset - + Permissions - + 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> - + @@ -18922,7 +18908,7 @@ If you have issues connecting over Tor check the Tor logs too. Form - 表單 + @@ -18930,7 +18916,7 @@ If you have issues connecting over Tor check the Tor logs too. Preferences - + @@ -18938,23 +18924,23 @@ If you have issues connecting over Tor check the Tor logs too. check peers you would like to share private publish key with - + Share for Friend - + Share - + 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. - + @@ -18962,47 +18948,47 @@ Select the Friends with which you want to Share your Channel. RetroShare Share Manager - + Shared Folder Manager - + Shared directory - + Visible name - + Access - + Visibility - + Add new - + Cancel - 取消 + Add a Share Directory - + @@ -19012,98 +18998,98 @@ Select the Friends with which you want to Share your Channel. Apply and close - + Share Manager - + Choose directory - + Change group visibility... - + Choose directory to share... - + Choose visible name... - + [Unset] (Double click to change) - + Double click to select which groups of friends can see the files - + Double click to change the name that friends will see. - + Double click to change shared directory path - + Directory does not exist! Double click to change shared directory path - + [All friend nodes] - + Warning! - + Do you really want to stop sharing this directory ? - + Choose a directory to share - + Drop file error. - + File can't be dropped, only directories are accepted. - + Directory not found or directory name not accepted. - + 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. - + @@ -19111,62 +19097,62 @@ Select the Friends with which you want to Share your Channel. Files - + Configure shared directories - + Start Search - + Reset - + Tree view - + Flat view - + All - + One day old - + One Week old - + One month old - + check files - + Download selected - + @@ -19176,68 +19162,68 @@ Select the Friends with which you want to Share your Channel. Copy retroshare Links to Clipboard - + Copy retroshare Links to Clipboard (HTML) - + Send retroshare Links - + Some files have been omitted - + RetroShare Link - + Recommendation(s) - + Create Collection... - + Modify Collection... - + View Collection... - + Download from collection file... - + Some files have been omitted because they have not been indexed yet. - + Search string should be at least 3 characters long. - + More than 3000 results. Add more/longer search words to select less. - + @@ -19245,48 +19231,48 @@ Select the Friends with which you want to Share your Channel. Friend - + Go Online - + Chatmessage - + New Msg - + Message - + Message arrived - + Download - 下載 + Download complete - + Lobby - + @@ -19294,42 +19280,42 @@ Select the Friends with which you want to Share your Channel. Event: - + Filename: - + Browse - + Event - + Filename - + Open File - + Sound - + Default - + @@ -19337,12 +19323,12 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Sound is on, click to turn it off - + @@ -19350,12 +19336,12 @@ Select the Friends with which you want to Share your Channel. Load configuration - + Create interface - + @@ -19363,61 +19349,61 @@ Select the Friends with which you want to Share your Channel. RetroShare - + Password - 密碼 + Remember Password - + Log In - + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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;">New Profile/Node</span></a></p></body></html> - + Load Person Failure - + Missing PGP Certificate - + Wrong password - + Warning - + @@ -19426,7 +19412,7 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19435,7 +19421,7 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + @@ -19444,7 +19430,7 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + @@ -19452,17 +19438,17 @@ This choice can be reverted in settings. Add Friend - + Add a Friend Wizard - + Add Share - + @@ -19472,7 +19458,7 @@ This choice can be reverted in settings. Messenger - + @@ -19482,53 +19468,53 @@ This choice can be reverted in settings. SMPlayer - + Quit - + Quick Start Wizard - + ServicePermissions - + Service permissions matrix - + DHT - + Bandwidth - + Turtle Router - + Global Router - + Gxs Transport - + @@ -19542,165 +19528,165 @@ This choice can be reverted in settings. Offline - + Away - + Busy - + Online - + Idle - + Friend is offline - + Friend is away - + Friend is busy - + Friend is online - + Friend is idle - + Connected - + Unreachable - + Available - + Neighbor - + Trying TCP - + Trying UDP - + Connected: TCP - + Connected: UDP - + Connected: I2P - + Connected: Unknown - + DHT: Contact - + TCP-in - + TCP-out - + inbound connection - + outbound connection - + UDP - + Tor-in - + Tor-out - + I2P-in - + I2P-out - + unkown - + Connected: Tor - + @@ -19708,30 +19694,30 @@ This choice can be reverted in settings. Status 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"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { 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> - + @@ -19740,28 +19726,28 @@ p, li { white-space: pre-wrap; } Define Style - + Choose color - + Color 2 - + Color 1 - + Style - + @@ -19771,12 +19757,12 @@ p, li { white-space: pre-wrap; } Solid - + Gradient - + @@ -19784,17 +19770,17 @@ p, li { white-space: pre-wrap; } %p Kb - + Cancel Download - + Download File - + @@ -19806,38 +19792,38 @@ p, li { white-space: pre-wrap; } Play File - + Play - + Save File - + Remove this item - + ERROR - + EXTRA - + REMOTE - + @@ -19847,33 +19833,33 @@ p, li { white-space: pre-wrap; } LOCAL - + UPLOAD - + Remove Attachment - + File %1 does not exist at location. - + File %1 is not completed. - + Save Channel File - + @@ -19883,12 +19869,12 @@ p, li { white-space: pre-wrap; } Open File - + Copy RetroShare Link - + @@ -19896,17 +19882,17 @@ p, li { white-space: pre-wrap; } Subscribed - + Unsubscribe - + Subscribe - + @@ -19914,7 +19900,7 @@ p, li { white-space: pre-wrap; } Pause - + @@ -19922,27 +19908,27 @@ p, li { white-space: pre-wrap; } Important - + Work - + Personal - + Todo - + Later - + @@ -19950,12 +19936,12 @@ p, li { white-space: pre-wrap; } Remove All Tags - + New tag ... - + @@ -19963,12 +19949,12 @@ p, li { white-space: pre-wrap; } All Toasters are disabled - + Toasters are enabled - + @@ -19976,58 +19962,58 @@ p, li { white-space: pre-wrap; } Dialog - + Setting up Tor... - + Tor status: - + Unknown - 未知 + Not started - + Hidden service address: - + Tor bootstrap status: - + Not set - + Onion address: - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] - + @@ -20035,28 +20021,28 @@ p, li { white-space: pre-wrap; } Tor - + <p>This version of Retroshare uses Tor to connect to your friends.</p> - + Tor is currently offline - + Tor is OK - + No tor configuration - + @@ -20064,231 +20050,231 @@ p, li { white-space: pre-wrap; } Transfer options - + Maximum simultaneous downloads: - + Shared Directories - + Automatically share incoming directory (Recommended) - + Edit Share - + Auto-check shared directories every - + minute(s) - + <html><head/><body><p>Tells Retroshare to follow the links. Loops and duplicate directories are automatically taken care of. If unchecked, Retroshare will just ignore symbolic links to both files and directories.</p></body></html> - + follow symbolic links - + <html><head/><body><p>When following sybolic links, Retroshare can encounter the same directory/file more than once. If checked, this option will make tell Retroshare to silently ignore the file. This option saves Retroshare indexing against directory loops.</p></body></html> - + Ignore duplicate files/directories - + Maximum depth (0=unlimited): - + <html><head/><body><p>This value allows you to limit the depth of the directory hierarchy you are indexing, starting from the base directory. If you allow Retroshare to follow symbolic links and unchecked &quot;Ignore duplicate files/directories&quot;, this option will avoid that Retroshare loops indefinitly while parsing directories.</p></body></html> - + Ignore files ending with: - + <html><head/><body><p>Add any combination of suffixes separated by &quot;;&quot; for instance &quot;~;.bak;.old&quot;</p></body></html> - + ignore files starting with: - + <html><head/><body><p>Add any combination of prefixes, separated by &quot;;&quot; for instance &quot;.;~&quot;</p></body></html> - + Incoming Directory - + Browse - + Partials Directory - + Maximum uploads per friend (0 = no limit) - + Default chunk strategy: - + Safety disk space limit : - + End-to-end encryption: - + Allow direct download: - + Streaming - + Progressive - + Random - + MB - + <html><head/><body><p>Anonymous tunnels can be end-o-end encrypted. In order to maintain backward compatibility, this can be made optional (choosing &quot;Accepted&quot;), but in the end, all Retroshare nodes will be switched to &quot;Enforced&quot;, meaning that all anonymous transfers will be end-to-end encrypted. With &quot;Accepted&quot;, it is likely that you will transfer using twice as many tunnels, since there is no way to know that an encrypted and a clear tunnel actually transfer from the same source.</p></body></html> - + Accepted - + Enforced - + <html><head/><body><p>How RS manage direct download setting.</p></body></html> - + Yes - + No - + Per user - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-size:8pt;"> is capable of 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-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-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> - + Max. tunnel req. forwarded per second: - + <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>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>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> - + Set Incoming Directory - + Set Partials Directory - + Files - + @@ -20296,27 +20282,27 @@ p, li { white-space: pre-wrap; } Download completed - + You have %1 completed downloads - + You have %1 completed download - + %1 completed downloads - + %1 completed download - + @@ -20325,111 +20311,111 @@ p, li { white-space: pre-wrap; } Downloads - + Uploads - + Name i.e: file name - + Size i.e: file size - + Completed - + Status - + Speed / Queue position - + Remaining - + Progress i.e: % uploaded - + Speed i.e: upload speed - + Transferred - + Hash - + Search - + Friends files - + My files - + Download from collection file... - + Pause - + Peer i.e: user name / tunnel id - + Resume - + Force Check - + @@ -20440,162 +20426,154 @@ p, li { white-space: pre-wrap; } Open Folder - + Open File - + Preview File - + Details... - + Clear Completed - + Copy RetroShare Link - + Paste RetroShare Link - + Down - + Up - + Top - + Bottom - + Streaming - + Slower - + Average - + Faster - + Random - + Progressive - + Play - + Rename file... - + Specify... - + <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... - + Priority (Speed)... - + Chunk strategy - + Set destination directory - + Choose directory - - - - Downloading - 下載中 - - - Unknown - 未知 + Anonymous end-to-end encrypted tunnel 0x - + Tunnel - + Are you sure that you want to cancel and delete these files? - + RetroShare - + @@ -20603,209 +20581,209 @@ p, li { white-space: pre-wrap; } File preview - + Can't create link for file %1. - + File %1 preview failed. - + Click OK when program terminates! - + Open Transfer - + File %1 is not completed. If it is a media file, try to preview it. - + Change file name - + Please enter a new file name - + Please enter a new--and valid--filename - + Expand all - + Collapse all - + Size - + Show Size Column - + Show Completed Column - + Speed - + Show Speed Column - + Progress / Availability - + Show Progress / Availability Column - + Sources - + Show Sources Column - + Show Status Column - + Show Speed / Queue position Column - + Show Remaining Column - + Download time - + Show Download time Column - + Show Hash Column - + Last Time Seen - + Show Last Time Seen Column - + Columns - + File Transfers - + Path - + Show Path Column - + Could not delete preview file - + Try it again? - + Create Collection... - + Modify Collection... - + View Collection... - + Collection - + %1 tunnels - + Anonymous tunnel 0x - + Files - + @@ -20814,101 +20792,101 @@ p, li { white-space: pre-wrap; } My files - + FILE - + Files - + File - + Empty - + DIR - + Friends Directories [updating...] - + Friends Directories - + My Directories [updating...] - + My Directories - + # Files - + Size - + Age - + Friend - + Access - + Visibility - + Column %1 - + Row %1 - + What's new - + @@ -20917,13 +20895,13 @@ p, li { white-space: pre-wrap; } Search requests - + Tunnel requests - + @@ -20932,32 +20910,32 @@ p, li { white-space: pre-wrap; } Unknown hashes - + Tunnel id - + last transfer - + Speed - + Request id: %1 %3 secs ago from %2 %4 (%5 hits) - + Request id: %1 from [%2] %3 secs ago - + @@ -20965,12 +20943,12 @@ p, li { white-space: pre-wrap; } Router Statistics - + F2F router information - + @@ -20978,42 +20956,42 @@ p, li { white-space: pre-wrap; } Router Statistics - + Age in seconds - + Depth - + total - + Anonymous tunnels - + Authenticated tunnels - + Unknown Peer - + Turtle Router - + @@ -21021,47 +20999,47 @@ p, li { white-space: pre-wrap; } Search requests repartition - + Tunnel requests repartition - + Turtle router traffic - + Tunnel requests Up - + Tunnel requests Dn - + Incoming file data - + Outgoing file data - + TR Forward probabilities - + Forwarded data - + @@ -21073,7 +21051,7 @@ p, li { white-space: pre-wrap; } Loading - + @@ -21081,22 +21059,22 @@ p, li { white-space: pre-wrap; } B - + KB - + MB - + GB - + @@ -21104,22 +21082,22 @@ p, li { white-space: pre-wrap; } You have %1 new messages - + You have %1 new message - + %1 new messages - + %1 new message - + @@ -21127,7 +21105,7 @@ p, li { white-space: pre-wrap; } OK - + @@ -21137,27 +21115,27 @@ p, li { white-space: pre-wrap; } Yes - + No - + Help - + Retry - + Show Log - + @@ -21172,12 +21150,12 @@ p, li { white-space: pre-wrap; } Quit - + Browse - + @@ -21190,57 +21168,57 @@ p, li { white-space: pre-wrap; } Enable Retroshare WEB Interface - + Web parameters - + Port: - + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser - + Note: these settings do not affect retroshare-nogui. Retroshare-nogui has a command line switch to activate the web interface. - + <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 - + Webinterface - + @@ -21248,48 +21226,48 @@ p, li { white-space: pre-wrap; } Basic Details - + Group Name: - + Category: - + Travel - + Holiday - + Friends - + Family - + Work - + Random - + @@ -21299,72 +21277,72 @@ p, li { white-space: pre-wrap; } Share Options - + Public - + All Friends - + Restricted - + N/A - + University Friends - + This List Contains - + All your Groups - + No Comments Allowed - + Authenticated Comments - + Any Comments Allowed - + Publish with XXX Key - + Cancel - + Create Group - + @@ -21373,42 +21351,42 @@ p, li { white-space: pre-wrap; } Wiki Pages - + New Group - + Page Name - + Page Id - + Orig Id - + << - + >> - + Republish - + @@ -21418,62 +21396,62 @@ p, li { white-space: pre-wrap; } New Page - + Refresh - + Search - + My Groups - + Subscribed Groups - + Popular Groups - + Other Groups - + Subscribe to Group - + Unsubscribe to Group - + Todo - + Show Wiki Group - + Edit Wiki Group - + @@ -21481,79 +21459,79 @@ p, li { white-space: pre-wrap; } Page Edit History - + Enable Obsolete Edits - + Choose for Merge - + Merge for Republish (TODO) - + Publish Date - + By - + PageId - + \/ - + /\ - + Wiki Group: - + Page Name: - + Previous Version - + Tags - + Show Edit History - + Status - + @@ -21569,39 +21547,39 @@ p, li { white-space: pre-wrap; } Revert - + Submit - + Hide Edit History - + Edit Page - + Create New Wiki Page - + Republish - + Edit Wiki Page - + @@ -21609,37 +21587,37 @@ p, li { white-space: pre-wrap; } Create New Wiki Group - + Wiki Group - + Edit Wiki Group - + Add Wiki Moderators - + Select Wiki Moderators - + Create Group - + Update Group - + @@ -21647,28 +21625,28 @@ p, li { white-space: pre-wrap; } TimeRange - + All - + Last Month - + Last Week - + Today - + @@ -21678,67 +21656,67 @@ p, li { white-space: pre-wrap; } from - + until - + Search/Filter - + Network Wide - + Manage Accounts - + Showing: - + Yourself - + Friends - + Following - + Custom - + Account 1 - + Account 2 - + Account 3 - + @@ -21747,12 +21725,12 @@ p, li { white-space: pre-wrap; } CheckBox - + Post Pulse to Wire - + @@ -21767,32 +21745,32 @@ p, li { white-space: pre-wrap; } B bytes - + KB kilobytes (1024 bytes) - + MB megabytes (1024 kilobytes) - + GB gigabytes (1024 megabytes) - + TB terabytes (1024 gigabytes) - + @@ -21803,65 +21781,65 @@ p, li { white-space: pre-wrap; } < 1m < 1 minute - + %1 minutes e.g: 10minutes - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + %1y %2d e.g: 2 years 2days - + k e.g: 3.1 k - + M e.g: 3.1 M - + G e.g: 3.1 G - + T e.g: 3.1 T - + Load avatar image - + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + @@ -21869,133 +21847,133 @@ p, li { white-space: pre-wrap; } Do you accept connections signed by this profile? - + Name of the profile - + This column indicates trust level and whether you signed the profile PGP key - + Did that peer sign your own profile PGP key - + PGP Key Id of that profile - + Last time this key was used (received time, or to check connection) - + Connections - + Profile - + Trust level - + Has signed your key? - + Id - + Last used - + Personal signature - + Marginally trusted peer - + Fully trusted peer - + Untrusted peer - + Yes - + No - + Last hour - + Today - + Never - 從未 + %1 days ago - + Accepted - + - - + PGP key signed by you - + has authenticated you. Right-click and select 'make friend' to be able to connect. - + - + \ No newline at end of file